public static enum NextObjective.Type extends java.lang.Enum<NextObjective.Type>
Enum Constant and Description |
---|
BROADCAST
Broadcast packet process.
|
FAILOVER
Failover handling.
|
HASHED
A hashed packet processing.
|
SIMPLE
Simple processing.
|
Modifier and Type | Method and Description |
---|---|
static NextObjective.Type |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static NextObjective.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final NextObjective.Type HASHED
public static final NextObjective.Type BROADCAST
public static final NextObjective.Type FAILOVER
public static final NextObjective.Type SIMPLE
public static NextObjective.Type[] values()
for (NextObjective.Type c : NextObjective.Type.values()) System.out.println(c);
public static NextObjective.Type 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