public enum DeliverPolicy extends java.lang.Enum<DeliverPolicy>
| Enum Constant and Description |
|---|
All |
ByStartSequence |
ByStartTime |
Last |
New |
| Modifier and Type | Method and Description |
|---|---|
static DeliverPolicy |
get(java.lang.String value) |
java.lang.String |
toString() |
static DeliverPolicy |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static DeliverPolicy[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DeliverPolicy All
public static final DeliverPolicy Last
public static final DeliverPolicy New
public static final DeliverPolicy ByStartSequence
public static final DeliverPolicy ByStartTime
public static DeliverPolicy[] values()
for (DeliverPolicy c : DeliverPolicy.values()) System.out.println(c);
public static DeliverPolicy 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 nullpublic java.lang.String toString()
toString in class java.lang.Enum<DeliverPolicy>public static DeliverPolicy get(java.lang.String value)