Enum Class ProgressLevel

java.lang.Object
java.lang.Enum<ProgressLevel>
de.mid.innovator.m2msdk.model.progress.ProgressLevel
All Implemented Interfaces:
Serializable, Comparable<ProgressLevel>, Constable

public enum ProgressLevel extends Enum<ProgressLevel>
Type of progress. this is the level where the progress has been stopped. You can step in and out by stepping up and down the progress type.
Version:
11.3.1
Author:
jmback
  • Enum Constant Details

    • All

      public static final ProgressLevel All
      All
    • Step

      public static final ProgressLevel Step
      Model transformation step
    • Task

      public static final ProgressLevel Task
      Task in a model transformation step
    • Group

      public static final ProgressLevel Group
      Group in a task
    • Item

      public static final ProgressLevel Item
      Item in a group
  • Method Details

    • values

      public static ProgressLevel[] values()
      Returns an array containing the constants of this enum class, in the order they are declared.
      Returns:
      an array containing the constants of this enum class, in the order they are declared
    • valueOf

      public static ProgressLevel valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)
      Parameters:
      name - the name of the enum constant to be returned.
      Returns:
      the enum constant with the specified name
      Throws:
      IllegalArgumentException - if this enum class has no constant with the specified name
      NullPointerException - if the argument is null
    • stepIn

      public ProgressLevel stepIn()
    • stepOut

      public ProgressLevel stepOut()
    • isIn

      public boolean isIn(ProgressLevel iOther)