Enum CompleteCorrelationResult.Status
- java.lang.Object
-
- java.lang.Enum<CompleteCorrelationResult.Status>
-
- com.evolveum.midpoint.model.api.correlation.CompleteCorrelationResult.Status
-
- All Implemented Interfaces:
Serializable
,Comparable<CompleteCorrelationResult.Status>
- Enclosing class:
- CompleteCorrelationResult
public static enum CompleteCorrelationResult.Status extends Enum<CompleteCorrelationResult.Status>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ERROR
The execution of the correlator ended with an error.EXISTING_OWNER
The existing owner was found.NO_OWNER
No owner matches.UNCERTAIN
The situation is not certain.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static CompleteCorrelationResult.Status
valueOf(String name)
Returns the enum constant of this type with the specified name.static CompleteCorrelationResult.Status[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
EXISTING_OWNER
public static final CompleteCorrelationResult.Status EXISTING_OWNER
The existing owner was found.
-
NO_OWNER
public static final CompleteCorrelationResult.Status NO_OWNER
No owner matches.
-
UNCERTAIN
public static final CompleteCorrelationResult.Status UNCERTAIN
The situation is not certain. (Correlation case may or may not be created.)
-
ERROR
public static final CompleteCorrelationResult.Status ERROR
The execution of the correlator ended with an error. (This means that the situation is uncertain - but it's a specific subcase of it.)
-
-
Method Detail
-
values
public static CompleteCorrelationResult.Status[] 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 (CompleteCorrelationResult.Status c : CompleteCorrelationResult.Status.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static CompleteCorrelationResult.Status 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
-
-