public static enum FlowEntry.FlowLiveType extends Enum<FlowEntry.FlowLiveType>
Enum Constant and Description |
---|
IMMEDIATE
Indicates that this rule has been submitted for addition immediately.
|
LONG
Indicates that this rule has been submitted for a long time.
|
MID
Indicates that this rule has been submitted for a mid time.
|
SHORT
Indicates that this rule has been submitted for a short time.
|
UNKNOWN
Indicates that this rule has been submitted for UNKNOWN or ERROR.
|
Modifier and Type | Method and Description |
---|---|
static FlowEntry.FlowLiveType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FlowEntry.FlowLiveType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FlowEntry.FlowLiveType IMMEDIATE
public static final FlowEntry.FlowLiveType SHORT
public static final FlowEntry.FlowLiveType MID
public static final FlowEntry.FlowLiveType LONG
public static final FlowEntry.FlowLiveType UNKNOWN
public static FlowEntry.FlowLiveType[] values()
for (FlowEntry.FlowLiveType c : FlowEntry.FlowLiveType.values()) System.out.println(c);
public static FlowEntry.FlowLiveType 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 null