public enum OvsdbTable extends Enum<OvsdbTable>
| Enum Constant and Description |
|---|
BRIDGE |
CONTROLLER |
FLOWSAMPLECOLLECTORSET |
FLWTABLE |
INTERFACE |
IPFIX |
MANAGER |
MIRROR |
NETFLOW |
OPENVSWITCH |
PORT |
QOS |
QUEUE |
SFLOW |
SSL |
| Modifier and Type | Method and Description |
|---|---|
String |
tableName()
Returns the table name for OvsdbTable.
|
static OvsdbTable |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static OvsdbTable[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final OvsdbTable INTERFACE
public static final OvsdbTable BRIDGE
public static final OvsdbTable CONTROLLER
public static final OvsdbTable PORT
public static final OvsdbTable OPENVSWITCH
public static final OvsdbTable FLWTABLE
public static final OvsdbTable QOS
public static final OvsdbTable QUEUE
public static final OvsdbTable MIRROR
public static final OvsdbTable MANAGER
public static final OvsdbTable NETFLOW
public static final OvsdbTable SSL
public static final OvsdbTable SFLOW
public static final OvsdbTable IPFIX
public static final OvsdbTable FLOWSAMPLECOLLECTORSET
public static OvsdbTable[] values()
for (OvsdbTable c : OvsdbTable.values()) System.out.println(c);
public static OvsdbTable 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 String tableName()