public enum StatTriggerField extends Enum<StatTriggerField>
| Enum Constant and Description | 
|---|
BYTE_COUNT
Number of bytes in flow entry. 
 | 
DURATION
Time flow entry has been alive. 
 | 
FLOW_COUNT
Number of aggregated flow entries. 
 | 
IDLE_TIME
Time flow entry has been idle. 
 | 
PACKET_COUNT
Number of packets in flow entry. 
 | 
| Modifier and Type | Method and Description | 
|---|---|
static StatTriggerField | 
valueOf(String name)
Returns the enum constant of this type with the specified name. 
 | 
static StatTriggerField[] | 
values()
Returns an array containing the constants of this enum type, in
the order they are declared. 
 | 
public static final StatTriggerField DURATION
public static final StatTriggerField IDLE_TIME
public static final StatTriggerField FLOW_COUNT
public static final StatTriggerField PACKET_COUNT
public static final StatTriggerField BYTE_COUNT
public static StatTriggerField[] values()
for (StatTriggerField c : StatTriggerField.values()) System.out.println(c);
public static StatTriggerField 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