public enum SortKey extends Enum<SortKey>
Enum Constant and Description |
---|
ARRIVAL |
CC |
DATE |
FROM |
REVERSE |
SIZE |
SUBJECT |
TO |
Modifier and Type | Method and Description |
---|---|
static SortKey |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SortKey[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SortKey ARRIVAL
public static final SortKey CC
public static final SortKey DATE
public static final SortKey FROM
public static final SortKey REVERSE
public static final SortKey SIZE
public static final SortKey SUBJECT
public static final SortKey TO
public static SortKey[] values()
for (SortKey c : SortKey.values()) System.out.println(c);
public static SortKey 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 nullCopyright © 2006–2019 Icegreen Technologies. All rights reserved.