Class ForwardingDatabaseSchema
- java.lang.Object
-
- com.google.common.collect.ForwardingObject
-
- org.opendaylight.ovsdb.lib.schema.ForwardingDatabaseSchema
-
- All Implemented Interfaces:
DatabaseSchema
public abstract class ForwardingDatabaseSchema extends com.google.common.collect.ForwardingObject implements DatabaseSchema
-
-
Constructor Summary
Constructors Constructor Description ForwardingDatabaseSchema()
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description protected abstract DatabaseSchema
delegate()
String
getName()
Set<String>
getTables()
Version
getVersion()
boolean
hasTable(String table)
<E extends TableSchema<E>>
Etable(String tableName, Class<E> clazz)
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface org.opendaylight.ovsdb.lib.schema.DatabaseSchema
withInternallyGeneratedColumns
-
-
-
-
Method Detail
-
delegate
protected abstract DatabaseSchema delegate()
- Specified by:
delegate
in classcom.google.common.collect.ForwardingObject
-
getTables
public Set<String> getTables()
- Specified by:
getTables
in interfaceDatabaseSchema
-
hasTable
public boolean hasTable(String table)
- Specified by:
hasTable
in interfaceDatabaseSchema
-
table
public <E extends TableSchema<E>> E table(String tableName, Class<E> clazz)
- Specified by:
table
in interfaceDatabaseSchema
-
getName
public String getName()
- Specified by:
getName
in interfaceDatabaseSchema
-
getVersion
public Version getVersion()
- Specified by:
getVersion
in interfaceDatabaseSchema
-
-