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