Enum OvsdbSchemaContants.OvsdbSchemaTables
- java.lang.Object
-
- java.lang.Enum<OvsdbSchemaContants.OvsdbSchemaTables>
-
- org.opendaylight.ovsdb.southbound.OvsdbSchemaContants.OvsdbSchemaTables
-
- All Implemented Interfaces:
Serializable
,Comparable<OvsdbSchemaContants.OvsdbSchemaTables>
- Enclosing interface:
- OvsdbSchemaContants
public static enum OvsdbSchemaContants.OvsdbSchemaTables extends Enum<OvsdbSchemaContants.OvsdbSchemaTables>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description AUTOATTACH
BRIDGE
CONTROLLER
FLOWSAMPLECOLLECTORSET
FLOWTABLE
INTERFACE
IPFIX
MANAGER
MIRROR
NETFLOW
OPENVSWITCH
PORT
QOS
SFLOW
SSL
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getColumnNameInParentTable()
String
getParentTableName()
String
getTableName()
static OvsdbSchemaContants.OvsdbSchemaTables
valueOf(String name)
Returns the enum constant of this type with the specified name.static OvsdbSchemaContants.OvsdbSchemaTables[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
OPENVSWITCH
public static final OvsdbSchemaContants.OvsdbSchemaTables OPENVSWITCH
-
BRIDGE
public static final OvsdbSchemaContants.OvsdbSchemaTables BRIDGE
-
PORT
public static final OvsdbSchemaContants.OvsdbSchemaTables PORT
-
INTERFACE
public static final OvsdbSchemaContants.OvsdbSchemaTables INTERFACE
-
SSL
public static final OvsdbSchemaContants.OvsdbSchemaTables SSL
-
IPFIX
public static final OvsdbSchemaContants.OvsdbSchemaTables IPFIX
-
SFLOW
public static final OvsdbSchemaContants.OvsdbSchemaTables SFLOW
-
FLOWTABLE
public static final OvsdbSchemaContants.OvsdbSchemaTables FLOWTABLE
-
QOS
public static final OvsdbSchemaContants.OvsdbSchemaTables QOS
-
NETFLOW
public static final OvsdbSchemaContants.OvsdbSchemaTables NETFLOW
-
MIRROR
public static final OvsdbSchemaContants.OvsdbSchemaTables MIRROR
-
MANAGER
public static final OvsdbSchemaContants.OvsdbSchemaTables MANAGER
-
CONTROLLER
public static final OvsdbSchemaContants.OvsdbSchemaTables CONTROLLER
-
FLOWSAMPLECOLLECTORSET
public static final OvsdbSchemaContants.OvsdbSchemaTables FLOWSAMPLECOLLECTORSET
-
AUTOATTACH
public static final OvsdbSchemaContants.OvsdbSchemaTables AUTOATTACH
-
-
Method Detail
-
values
public static OvsdbSchemaContants.OvsdbSchemaTables[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (OvsdbSchemaContants.OvsdbSchemaTables c : OvsdbSchemaContants.OvsdbSchemaTables.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static OvsdbSchemaContants.OvsdbSchemaTables valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
getTableName
public String getTableName()
-
getParentTableName
public String getParentTableName()
-
getColumnNameInParentTable
public String getColumnNameInParentTable()
-
-