Enum SchemaRegistry.ComparisonResult
- java.lang.Object
-
- java.lang.Enum<SchemaRegistry.ComparisonResult>
-
- com.evolveum.midpoint.prism.schema.SchemaRegistry.ComparisonResult
-
- All Implemented Interfaces:
Serializable
,Comparable<SchemaRegistry.ComparisonResult>
- Enclosing interface:
- SchemaRegistry
public static enum SchemaRegistry.ComparisonResult extends Enum<SchemaRegistry.ComparisonResult>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description EQUAL
FIRST_IS_CHILD
INCOMPATIBLE
NO_STATIC_CLASS
SECOND_IS_CHILD
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static SchemaRegistry.ComparisonResult
valueOf(String name)
Returns the enum constant of this type with the specified name.static SchemaRegistry.ComparisonResult[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
EQUAL
public static final SchemaRegistry.ComparisonResult EQUAL
-
NO_STATIC_CLASS
public static final SchemaRegistry.ComparisonResult NO_STATIC_CLASS
-
FIRST_IS_CHILD
public static final SchemaRegistry.ComparisonResult FIRST_IS_CHILD
-
SECOND_IS_CHILD
public static final SchemaRegistry.ComparisonResult SECOND_IS_CHILD
-
INCOMPATIBLE
public static final SchemaRegistry.ComparisonResult INCOMPATIBLE
-
-
Method Detail
-
values
public static SchemaRegistry.ComparisonResult[] 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 (SchemaRegistry.ComparisonResult c : SchemaRegistry.ComparisonResult.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static SchemaRegistry.ComparisonResult 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
-
-