Package com.evolveum.midpoint.model.api
Enum ProgressInformation.ActivityType
- java.lang.Object
-
- java.lang.Enum<ProgressInformation.ActivityType>
-
- com.evolveum.midpoint.model.api.ProgressInformation.ActivityType
-
- All Implemented Interfaces:
Serializable
,Comparable<ProgressInformation.ActivityType>
- Enclosing class:
- ProgressInformation
public static enum ProgressInformation.ActivityType extends Enum<ProgressInformation.ActivityType>
There are some basic kinds of activities relevant for progress reporting. These are activities that could take a considerably long time (because of communicating with external systems, except focus operation, which is important from the users' point of view).
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CLOCKWORK
FOCUS_OPERATION
NOTIFICATIONS
PROJECTOR
RESOURCE_OBJECT_OPERATION
WAITING
WORKFLOWS
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ProgressInformation.ActivityType
valueOf(String name)
Returns the enum constant of this type with the specified name.static ProgressInformation.ActivityType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NOTIFICATIONS
public static final ProgressInformation.ActivityType NOTIFICATIONS
-
WORKFLOWS
public static final ProgressInformation.ActivityType WORKFLOWS
-
PROJECTOR
public static final ProgressInformation.ActivityType PROJECTOR
-
RESOURCE_OBJECT_OPERATION
public static final ProgressInformation.ActivityType RESOURCE_OBJECT_OPERATION
-
FOCUS_OPERATION
public static final ProgressInformation.ActivityType FOCUS_OPERATION
-
CLOCKWORK
public static final ProgressInformation.ActivityType CLOCKWORK
-
WAITING
public static final ProgressInformation.ActivityType WAITING
-
-
Method Detail
-
values
public static ProgressInformation.ActivityType[] 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 (ProgressInformation.ActivityType c : ProgressInformation.ActivityType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ProgressInformation.ActivityType 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
-
-