Enum ObservedResult.InspectedStatus
- java.lang.Object
-
- java.lang.Enum<ObservedResult.InspectedStatus>
-
- com.kenshoo.pl.entity.spi.helpers.ObservedResult.InspectedStatus
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<ObservedResult.InspectedStatus>
- Enclosing class:
- ObservedResult<E extends EntityType<E>>
public static enum ObservedResult.InspectedStatus extends java.lang.Enum<ObservedResult.InspectedStatus>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description IDENTICALLEGACY_ERROR_MISMATCHPERSISTENCE_ERROR_MISMATCHVALUE_MISMATCH
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ObservedResult.InspectedStatusvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static ObservedResult.InspectedStatus[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
IDENTICAL
public static final ObservedResult.InspectedStatus IDENTICAL
-
VALUE_MISMATCH
public static final ObservedResult.InspectedStatus VALUE_MISMATCH
-
LEGACY_ERROR_MISMATCH
public static final ObservedResult.InspectedStatus LEGACY_ERROR_MISMATCH
-
PERSISTENCE_ERROR_MISMATCH
public static final ObservedResult.InspectedStatus PERSISTENCE_ERROR_MISMATCH
-
-
Method Detail
-
values
public static ObservedResult.InspectedStatus[] 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 (ObservedResult.InspectedStatus c : ObservedResult.InspectedStatus.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ObservedResult.InspectedStatus valueOf(java.lang.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:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
-