public enum FlowField extends Enum<FlowField>
| Enum Constant and Description |
|---|
DST_IP
Destination IP address
|
DST_MAC
Destination MAC address
|
DST_PORT
Destination Port number
|
ETH_TYPE
Protocol
|
PROTOCOL
Protocol
|
SRC_IP
Source IP address
|
SRC_MAC
Source MAC address
|
SRC_PORT
Source Port number
|
| Modifier and Type | Method and Description |
|---|---|
static FlowField |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FlowField[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FlowField SRC_MAC
public static final FlowField DST_MAC
public static final FlowField SRC_IP
public static final FlowField DST_IP
public static final FlowField ETH_TYPE
public static final FlowField PROTOCOL
public static final FlowField SRC_PORT
public static final FlowField DST_PORT
public static FlowField[] values()
for (FlowField c : FlowField.values()) System.out.println(c);
public static FlowField 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 nullCopyright © 2014. All Rights Reserved.