Enum SortBy

    • 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 name
        NullPointerException - if the argument is null
      • getByNameOrValue

        public static SortBy getByNameOrValue​(String name)