public enum EntryOrdering extends java.lang.Enum<EntryOrdering>
| Enum Constant and Description |
|---|
DEF_ORDER |
NAME_BY_DICTIONARY |
NAME_BY_JAVA |
REF_ORDER |
| Modifier and Type | Method and Description |
|---|---|
static EntryOrdering |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static EntryOrdering[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EntryOrdering NAME_BY_JAVA
public static final EntryOrdering NAME_BY_DICTIONARY
public static final EntryOrdering DEF_ORDER
public static final EntryOrdering REF_ORDER
public static EntryOrdering[] values()
for (EntryOrdering c : EntryOrdering.values()) System.out.println(c);
public static EntryOrdering valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant
with the specified namejava.lang.NullPointerException - if the argument is null