oracle.toplink.tools.schemaframework
Class OracleSequenceDefinition

java.lang.Object
  |
  +--oracle.toplink.tools.schemaframework.DatabaseObjectDefinition
        |
        +--oracle.toplink.tools.schemaframework.SequenceDefinition
              |
              +--oracle.toplink.tools.schemaframework.OracleSequenceDefinition
All Implemented Interfaces:
java.lang.Cloneable, java.io.Serializable

public class OracleSequenceDefinition
extends SequenceDefinition

Purpose: Support Oracle native sequence creation. Oracle has custom support for sequences.

See Also:
Serialized Form

Fields inherited from class oracle.toplink.tools.schemaframework.DatabaseObjectDefinition
name, qualifier
 
Constructor Summary
OracleSequenceDefinition(java.lang.String name)
           
 
Method Summary
TypeMethod
 int getIncrement()
          The increment can be used to support pre-allocation.
 void setIncrement(int increment)
          The increment can be used to support pre-allocation.
 
Methods inherited from class oracle.toplink.tools.schemaframework.SequenceDefinition
 
Methods inherited from class oracle.toplink.tools.schemaframework.DatabaseObjectDefinition
getName, getQualifier, setName, setQualifier, toString
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

OracleSequenceDefinition

public OracleSequenceDefinition(java.lang.String name)
Method Detail

getIncrement

public int getIncrement()
The increment can be used to support pre-allocation.

setIncrement

public void setIncrement(int increment)
The increment can be used to support pre-allocation.