Enum PredefinedPolicySituation
- java.lang.Object
- 
- java.lang.Enum<PredefinedPolicySituation>
- 
- com.evolveum.midpoint.model.api.context.PredefinedPolicySituation
 
 
- 
- All Implemented Interfaces:
- Serializable,- Comparable<PredefinedPolicySituation>
 
 public enum PredefinedPolicySituation extends Enum<PredefinedPolicySituation> - Author:
- semancik
 
- 
- 
Enum Constant SummaryEnum Constants Enum Constant Description ASSIGNMENT_MODIFIEDASSIGNMENT_STATEASSIGNMENT_TIME_VALIDITYEXCLUSION_VIOLATIONHAS_ASSIGNMENTHAS_NO_ASSIGNMENTMODIFIEDOBJECT_STATEOBJECT_TIME_VALIDITYOVERASSIGNEDUNDERASSIGNED
 - 
Method SummaryAll Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static PredefinedPolicySituationget(PolicyConstraintKindType constraintKind)PolicyConstraintKindTypegetConstraintKind()StringgetUrl()static PredefinedPolicySituationvalueOf(String name)Returns the enum constant of this type with the specified name.static PredefinedPolicySituation[]values()Returns an array containing the constants of this enum type, in the order they are declared.
 
- 
- 
- 
Enum Constant Detail- 
EXCLUSION_VIOLATIONpublic static final PredefinedPolicySituation EXCLUSION_VIOLATION 
 - 
UNDERASSIGNEDpublic static final PredefinedPolicySituation UNDERASSIGNED 
 - 
OVERASSIGNEDpublic static final PredefinedPolicySituation OVERASSIGNED 
 - 
MODIFIEDpublic static final PredefinedPolicySituation MODIFIED 
 - 
ASSIGNMENT_MODIFIEDpublic static final PredefinedPolicySituation ASSIGNMENT_MODIFIED 
 - 
HAS_ASSIGNMENTpublic static final PredefinedPolicySituation HAS_ASSIGNMENT 
 - 
HAS_NO_ASSIGNMENTpublic static final PredefinedPolicySituation HAS_NO_ASSIGNMENT 
 - 
OBJECT_STATEpublic static final PredefinedPolicySituation OBJECT_STATE 
 - 
ASSIGNMENT_STATEpublic static final PredefinedPolicySituation ASSIGNMENT_STATE 
 - 
OBJECT_TIME_VALIDITYpublic static final PredefinedPolicySituation OBJECT_TIME_VALIDITY 
 - 
ASSIGNMENT_TIME_VALIDITYpublic static final PredefinedPolicySituation ASSIGNMENT_TIME_VALIDITY 
 
- 
 - 
Method Detail- 
valuespublic static PredefinedPolicySituation[] 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 (PredefinedPolicySituation c : PredefinedPolicySituation.values()) System.out.println(c); - Returns:
- an array containing the constants of this enum type, in the order they are declared
 
 - 
valueOfpublic static PredefinedPolicySituation 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 name
- NullPointerException- if the argument is null
 
 - 
getUrlpublic String getUrl() 
 - 
getConstraintKindpublic PolicyConstraintKindType getConstraintKind() 
 - 
getpublic static PredefinedPolicySituation get(PolicyConstraintKindType constraintKind) 
 
- 
 
-