org.eclipse.jpt.db
Interface SchemaContainer

All Known Subinterfaces:
Database

public interface SchemaContainer

Schema "container" (i.e. Database or Catalog) Provisional API: This interface is part of an interim API that is still under development and expected to change significantly before reaching stability. It is available at this early stage to solicit feedback from pioneering adopters on the understanding that any code that uses this API will almost certainly be broken (repeatedly) as the API evolves. This interface is not intended to be implemented by clients.


Method Summary
 boolean containsSchemaNamed(java.lang.String name)
          Return whether the container contains a schema with the specified name, respecting the database's case-sensitivity.
 Schema schemaNamed(java.lang.String name)
          Return the schema in the container with the specified name, respecting the database's case-sensitivity.
 java.util.Iterator<java.lang.String> schemaNames()
          Return the names of the container's schemata.
 java.util.Iterator<Schema> schemata()
          Return the container's schemata.
 int schemataSize()
          Return the number of schemata in the container.
 

Method Detail

schemata

java.util.Iterator<Schema> schemata()
Return the container's schemata.


schemataSize

int schemataSize()
Return the number of schemata in the container.


schemaNames

java.util.Iterator<java.lang.String> schemaNames()
Return the names of the container's schemata.


containsSchemaNamed

boolean containsSchemaNamed(java.lang.String name)
Return whether the container contains a schema with the specified name, respecting the database's case-sensitivity.


schemaNamed

Schema schemaNamed(java.lang.String name)
Return the schema in the container with the specified name, respecting the database's case-sensitivity.