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