public enum DeliverPolicy extends java.lang.Enum<DeliverPolicy>
| Enum Constant and Description |
|---|
All
all messages
|
ByStartSequence
by start sequence
|
ByStartTime
by start time
|
Last
start at the last message
|
LastPerSubject
last per subject
|
New
start at any new messages
|
| Modifier and Type | Method and Description |
|---|---|
static @Nullable DeliverPolicy |
get(java.lang.String value)
Get an instance from the JSON 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 final DeliverPolicy LastPerSubject
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 @Nullable DeliverPolicy get(java.lang.String value)
value - the value