Enum CorrelationSituationType
- java.lang.Object
-
- java.lang.Enum<CorrelationSituationType>
-
- com.evolveum.midpoint.xml.ns._public.common.common_3.CorrelationSituationType
-
- All Implemented Interfaces:
Serializable
,Comparable<CorrelationSituationType>
public enum CorrelationSituationType extends Enum<CorrelationSituationType>
TODO
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ERROR
The correlation ended in error.EXISTING_OWNER
The (single) owner was found.NO_OWNER
It was decided that there is no owner.UNCERTAIN
The owner is unclear.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static CorrelationSituationType
fromValue(String v)
String
value()
static CorrelationSituationType
valueOf(String name)
Returns the enum constant of this type with the specified name.static CorrelationSituationType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
UNCERTAIN
public static final CorrelationSituationType UNCERTAIN
The owner is unclear. Corresponds to DISPUTED synchronization situation.
-
EXISTING_OWNER
public static final CorrelationSituationType EXISTING_OWNER
The (single) owner was found. Corresponds to UNLINKED synchronization situation.
-
NO_OWNER
public static final CorrelationSituationType NO_OWNER
It was decided that there is no owner. Corresponds to UNMATCHED synchronization situation.
-
ERROR
public static final CorrelationSituationType ERROR
The correlation ended in error.
-
-
Method Detail
-
values
public static CorrelationSituationType[] 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 (CorrelationSituationType c : CorrelationSituationType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static CorrelationSituationType 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 CorrelationSituationType fromValue(String v)
-
-