Enum ActivityRealizationStateType
- java.lang.Object
-
- java.lang.Enum<ActivityRealizationStateType>
-
- com.evolveum.midpoint.xml.ns._public.common.common_3.ActivityRealizationStateType
-
- All Implemented Interfaces:
Serializable
,Comparable<ActivityRealizationStateType>
public enum ActivityRealizationStateType extends Enum<ActivityRealizationStateType>
Java class for ActivityRealizationStateType.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="ActivityRealizationStateType"> <restriction base="{http://www.w3.org/2001/XMLSchema}string"> <enumeration value="inProgressLocal"/> <enumeration value="inProgressDelegated"/> <enumeration value="inProgressDistributed"/> <enumeration value="complete"/> </restriction> </simpleType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description COMPLETE
Activity is complete.IN_PROGRESS_DELEGATED
Activity is in progress and it was delegated to a subtask or subtasks.IN_PROGRESS_DISTRIBUTED
Activity is in progress and it was distributed to worker subtasks.IN_PROGRESS_LOCAL
Activity is in progress, treated by the current task.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static ActivityRealizationStateType
fromValue(String v)
String
value()
static ActivityRealizationStateType
valueOf(String name)
Returns the enum constant of this type with the specified name.static ActivityRealizationStateType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
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 Detail
-
values
public static ActivityRealizationStateType[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (ActivityRealizationStateType c : ActivityRealizationStateType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ActivityRealizationStateType valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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 type has no constant with the specified nameNullPointerException
- if the argument is null
-
value
public String value()
-
fromValue
public static ActivityRealizationStateType fromValue(String v)
-
-