Package com.evolveum.midpoint.prism.path
Enum ItemPath.CompareResult
- java.lang.Object
- 
- java.lang.Enum<ItemPath.CompareResult>
- 
- com.evolveum.midpoint.prism.path.ItemPath.CompareResult
 
 
- 
- All Implemented Interfaces:
- Serializable,- Comparable<ItemPath.CompareResult>
 - Enclosing interface:
- ItemPath
 
 public static enum ItemPath.CompareResult extends Enum<ItemPath.CompareResult> 
- 
- 
Enum Constant SummaryEnum Constants Enum Constant Description EQUIVALENTNO_RELATIONSUBPATHSUPERPATH
 - 
Method SummaryAll Methods Static Methods Concrete Methods Modifier and Type Method Description static ItemPath.CompareResultvalueOf(String name)Returns the enum constant of this type with the specified name.static ItemPath.CompareResult[]values()Returns an array containing the constants of this enum type, in the order they are declared.
 
- 
- 
- 
Enum Constant Detail- 
EQUIVALENTpublic static final ItemPath.CompareResult EQUIVALENT 
 - 
SUPERPATHpublic static final ItemPath.CompareResult SUPERPATH 
 - 
SUBPATHpublic static final ItemPath.CompareResult SUBPATH 
 - 
NO_RELATIONpublic static final ItemPath.CompareResult NO_RELATION 
 
- 
 - 
Method Detail- 
valuespublic static ItemPath.CompareResult[] 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 (ItemPath.CompareResult c : ItemPath.CompareResult.values()) System.out.println(c); - Returns:
- an array containing the constants of this enum type, in the order they are declared
 
 - 
valueOfpublic static ItemPath.CompareResult 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
 
 
- 
 
-