public enum LostTickPolicy extends Enum<LostTickPolicy>
QApiEnumDescriptor{name=LostTickPolicy, data=[discard, delay, merge, slew], fields=null}
Enum Constant and Description |
---|
__UNKNOWN |
delay |
discard |
merge |
slew |
Modifier and Type | Method and Description |
---|---|
String |
getJsonValue() |
static LostTickPolicy |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static LostTickPolicy[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LostTickPolicy discard
public static final LostTickPolicy delay
public static final LostTickPolicy merge
public static final LostTickPolicy slew
public static final LostTickPolicy __UNKNOWN
public static LostTickPolicy[] values()
for (LostTickPolicy c : LostTickPolicy.values()) System.out.println(c);
public static LostTickPolicy 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 nullpublic String getJsonValue()