Enum Class ActivityRealizationStateType

java.lang.Object
java.lang.Enum<ActivityRealizationStateType>
com.evolveum.midpoint.xml.ns._public.common.common_3.ActivityRealizationStateType
All Implemented Interfaces:
TypeSafeEnum, Serializable, Comparable<ActivityRealizationStateType>, Constable

public enum ActivityRealizationStateType extends Enum<ActivityRealizationStateType> implements TypeSafeEnum
Realization state of an activity.
  • Enum Constant Details

    • IN_PROGRESS_LOCAL

      public static final ActivityRealizationStateType IN_PROGRESS_LOCAL
      Activity is in progress, treated by the current task.
    • IN_PROGRESS_DELEGATED

      public static final ActivityRealizationStateType IN_PROGRESS_DELEGATED
      Activity is in progress and it was delegated to a subtask or subtasks.
    • IN_PROGRESS_DISTRIBUTED

      public static final ActivityRealizationStateType IN_PROGRESS_DISTRIBUTED
      Activity is in progress and it was distributed to worker subtasks.
    • COMPLETE

      public static final ActivityRealizationStateType COMPLETE
      Activity is complete.
  • Method Details

    • values

      public static ActivityRealizationStateType[] 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 ActivityRealizationStateType 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
    • value

      public String value()
      Description copied from interface: TypeSafeEnum
      Returns enum value defined as in schema.
      Specified by:
      value in interface TypeSafeEnum
      Returns:
    • fromValue

      public static ActivityRealizationStateType fromValue(String v)