public static enum PEFFileMerger.SortType extends java.lang.Enum<PEFFileMerger.SortType>
Enum Constant | Description |
---|---|
NUMERAL_GROUPING |
Sort groups of digits as numbers
|
STANDARD |
Sort alphabetically
|
Modifier and Type | Method | Description |
---|---|---|
static PEFFileMerger.SortType |
valueOf(java.lang.String name) |
Returns the enum constant of this type with the specified name.
|
static PEFFileMerger.SortType[] |
values() |
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PEFFileMerger.SortType NUMERAL_GROUPING
public static final PEFFileMerger.SortType STANDARD
public static PEFFileMerger.SortType[] values()
for (PEFFileMerger.SortType c : PEFFileMerger.SortType.values()) System.out.println(c);
public static PEFFileMerger.SortType 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