Package org.openiam.base.ws
Enum SortBy
- java.lang.Object
-
- java.lang.Enum<SortBy>
-
- org.openiam.base.ws.SortBy
-
- All Implemented Interfaces:
Serializable
,Comparable<SortBy>
public enum SortBy extends Enum<SortBy>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description APPROVER_ASSOCIATION_LVL
COORELATED_NAME
EMAIL_ADDRESS
EMPLOYEE_ID
FIRST_NAME
KEY_NAME
LAST_DATE
MAP_FOR_OBJECT_TYPE
MNG_SYS_POLICY_ID
NAME
RESOURCE_ID
START_DATE
START_SYNC_PROCESS_DATE
STATUS
SUBMIT_DATE
TYPE
USER_NAME
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static SortBy
getByNameOrValue(String name)
static SortBy
valueOf(String name)
Returns the enum constant of this type with the specified name.static SortBy[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NAME
public static final SortBy NAME
-
KEY_NAME
public static final SortBy KEY_NAME
-
COORELATED_NAME
public static final SortBy COORELATED_NAME
-
MAP_FOR_OBJECT_TYPE
public static final SortBy MAP_FOR_OBJECT_TYPE
-
MNG_SYS_POLICY_ID
public static final SortBy MNG_SYS_POLICY_ID
-
RESOURCE_ID
public static final SortBy RESOURCE_ID
-
START_SYNC_PROCESS_DATE
public static final SortBy START_SYNC_PROCESS_DATE
-
FIRST_NAME
public static final SortBy FIRST_NAME
-
START_DATE
public static final SortBy START_DATE
-
LAST_DATE
public static final SortBy LAST_DATE
-
STATUS
public static final SortBy STATUS
-
TYPE
public static final SortBy TYPE
-
APPROVER_ASSOCIATION_LVL
public static final SortBy APPROVER_ASSOCIATION_LVL
-
SUBMIT_DATE
public static final SortBy SUBMIT_DATE
-
USER_NAME
public static final SortBy USER_NAME
-
EMPLOYEE_ID
public static final SortBy EMPLOYEE_ID
-
EMAIL_ADDRESS
public static final SortBy EMAIL_ADDRESS
-
-
Method Detail
-
values
public static SortBy[] 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 (SortBy c : SortBy.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static SortBy 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
-
-