Enum EventResult.EventResultStatus
- java.lang.Object
-
- java.lang.Enum<EventResult.EventResultStatus>
-
- com.evolveum.midpoint.common.validator.EventResult.EventResultStatus
-
- All Implemented Interfaces:
Serializable
,Comparable<EventResult.EventResultStatus>
- Enclosing class:
- EventResult
public static enum EventResult.EventResultStatus extends Enum<EventResult.EventResultStatus>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CONTINUE
Continue normal processing.SKIP_OBJECT
Skip the rest of processing of this object, continue with the next object.STOP
Stop processing.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static EventResult.EventResultStatus
valueOf(String name)
Returns the enum constant of this type with the specified name.static EventResult.EventResultStatus[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CONTINUE
public static final EventResult.EventResultStatus CONTINUE
Continue normal processing.
-
SKIP_OBJECT
public static final EventResult.EventResultStatus SKIP_OBJECT
Skip the rest of processing of this object, continue with the next object.
-
STOP
public static final EventResult.EventResultStatus STOP
Stop processing.
-
-
Method Detail
-
values
public static EventResult.EventResultStatus[] 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 (EventResult.EventResultStatus c : EventResult.EventResultStatus.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static EventResult.EventResultStatus 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
-
-