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_LVLCOORELATED_NAMEEMAIL_ADDRESSEMPLOYEE_IDFIRST_NAMEKEY_NAMELAST_DATEMAP_FOR_OBJECT_TYPEMNG_SYS_POLICY_IDNAMERESOURCE_IDSTART_DATESTART_SYNC_PROCESS_DATESTATUSSUBMIT_DATETYPEUSER_NAME
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static SortBygetByNameOrValue(String name)static SortByvalueOf(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
-
-