Enum EventStatusType
- java.lang.Object
-
- java.lang.Enum<EventStatusType>
-
- com.evolveum.midpoint.xml.ns._public.common.common_3.EventStatusType
-
- All Implemented Interfaces:
Serializable
,Comparable<EventStatusType>
public enum EventStatusType extends Enum<EventStatusType>
Java class for EventStatusType.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="EventStatusType"> <restriction base="{http://www.w3.org/2001/XMLSchema}string"> <enumeration value="success"/> <enumeration value="alsoSuccess"/> <enumeration value="failure"/> <enumeration value="onlyFailure"/> <enumeration value="inProgress"/> </restriction> </simpleType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ALSO_SUCCESS
FAILURE
IN_PROGRESS
ONLY_FAILURE
SUCCESS
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static EventStatusType
fromValue(String v)
String
value()
static EventStatusType
valueOf(String name)
Returns the enum constant of this type with the specified name.static EventStatusType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
SUCCESS
public static final EventStatusType SUCCESS
-
ALSO_SUCCESS
public static final EventStatusType ALSO_SUCCESS
-
FAILURE
public static final EventStatusType FAILURE
-
ONLY_FAILURE
public static final EventStatusType ONLY_FAILURE
-
IN_PROGRESS
public static final EventStatusType IN_PROGRESS
-
-
Method Detail
-
values
public static EventStatusType[] 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 (EventStatusType c : EventStatusType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static EventStatusType 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 EventStatusType fromValue(String v)
-
-