org.sql.generation.api.grammar.definition.schema
Interface SchemaDefinition

All Superinterfaces:
SchemaDefinitionStatement, SchemaStatement, SQLStatement, org.atp.api.Typeable<SchemaStatement>

public interface SchemaDefinition
extends SchemaDefinitionStatement

This syntax element represents the CREATE SCHEMA statement.

Author:
Stanislav Muhametsin

Method Summary
 String getSchemaCharset()
          Returns the character set for this schema.
 List<SchemaElement> getSchemaElements()
          Returns any additional elements for this schema.
 String getSchemaName()
          Returns the name of the schema to be created.
 
Methods inherited from interface org.atp.api.Typeable
getImplementedType
 

Method Detail

getSchemaName

String getSchemaName()
Returns the name of the schema to be created.

Returns:
The name of the schema to be created.

getSchemaCharset

String getSchemaCharset()
Returns the character set for this schema. May be null if none specified.

Returns:
The character set for this schema. May be null if none specified.

getSchemaElements

List<SchemaElement> getSchemaElements()
Returns any additional elements for this schema. May be empty if none are present.

Returns:
Any additional elements for this schema. May be empty if none are present.


Copyright © 2010-2011. All Rights Reserved.