Enum ReconciliationResultCase
- java.lang.Object
-
- java.lang.Enum<ReconciliationResultCase>
-
- org.openiam.idm.srvc.recon.result.dto.ReconciliationResultCase
-
- All Implemented Interfaces:
Serializable
,Comparable<ReconciliationResultCase>
public enum ReconciliationResultCase extends Enum<ReconciliationResultCase>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description BROKEN_CSV
HEADER
IDM_DELETED
LOGIN_NOT_FOUND
MATCH_FOUND
MATCH_FOUND_DIFFERENT
NOT_EXIST_IN_IDM_DB
NOT_EXIST_IN_RESOURCE
NOT_UNIQUE_KEY
RESOURCE_DELETED
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getColor()
String
getValue()
static ReconciliationResultCase
valueOf(String name)
Returns the enum constant of this type with the specified name.static ReconciliationResultCase[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
HEADER
public static final ReconciliationResultCase HEADER
-
BROKEN_CSV
public static final ReconciliationResultCase BROKEN_CSV
-
NOT_EXIST_IN_IDM_DB
public static final ReconciliationResultCase NOT_EXIST_IN_IDM_DB
-
NOT_UNIQUE_KEY
public static final ReconciliationResultCase NOT_UNIQUE_KEY
-
IDM_DELETED
public static final ReconciliationResultCase IDM_DELETED
-
LOGIN_NOT_FOUND
public static final ReconciliationResultCase LOGIN_NOT_FOUND
-
MATCH_FOUND
public static final ReconciliationResultCase MATCH_FOUND
-
MATCH_FOUND_DIFFERENT
public static final ReconciliationResultCase MATCH_FOUND_DIFFERENT
-
NOT_EXIST_IN_RESOURCE
public static final ReconciliationResultCase NOT_EXIST_IN_RESOURCE
-
RESOURCE_DELETED
public static final ReconciliationResultCase RESOURCE_DELETED
-
-
Method Detail
-
values
public static ReconciliationResultCase[] 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 (ReconciliationResultCase c : ReconciliationResultCase.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ReconciliationResultCase 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
-
getValue
public String getValue()
-
getColor
public String getColor()
-
-