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 DatabaseSchemadelegate()StringgetName()Set<String>getTables()VersiongetVersion()booleanhasTable(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:
delegatein classcom.google.common.collect.ForwardingObject
-
getTables
public Set<String> getTables()
- Specified by:
getTablesin interfaceDatabaseSchema
-
hasTable
public boolean hasTable(String table)
- Specified by:
hasTablein interfaceDatabaseSchema
-
table
public <E extends TableSchema<E>> E table(String tableName, Class<E> clazz)
- Specified by:
tablein interfaceDatabaseSchema
-
getName
public String getName()
- Specified by:
getNamein interfaceDatabaseSchema
-
getVersion
public Version getVersion()
- Specified by:
getVersionin interfaceDatabaseSchema
-
-