public enum FieldSorter extends Enum<FieldSorter>
Enum Constant and Description |
---|
ALPHABETICAL
ALPHABETICAL ORDER
|
DATE
DATE ORDER
|
NUMBER
NUMBER ORDER
|
PRIORITY_ORDER
SELF ORDERING
|
Modifier and Type | Method and Description |
---|---|
String |
getI18nName() |
boolean |
isNullFirst() |
static FieldSorter |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FieldSorter[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FieldSorter ALPHABETICAL
public static final FieldSorter NUMBER
public static final FieldSorter DATE
public static final FieldSorter PRIORITY_ORDER
public static FieldSorter[] values()
for (FieldSorter c : FieldSorter.values()) System.out.println(c);
public static FieldSorter valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullpublic boolean isNullFirst()
public String getI18nName()
Copyright © 2022 DEISER. All Rights Reserved.