Uses of Class
org.axiondb.Sequence

Packages that use Sequence
org.axiondb Core interfaces, identifiers, and exceptions. 
org.axiondb.engine Core database machinery. 
org.axiondb.engine.commands AxionCommand implementations. 
org.axiondb.engine.tables   
org.axiondb.event Event model with listeners for database actions 
 

Uses of Sequence in org.axiondb
 

Methods in org.axiondb that return Sequence
 Sequence Table.getSequence()
           
 Sequence Database.getSequence(String name)
          Get the specified Sequence, or null if no such sequence can be found.
 

Methods in org.axiondb with parameters of type Sequence
 void Database.createSequence(Sequence seq)
          Create a numeric sequence
 void Table.setSequence(Sequence seq)
           
 

Constructors in org.axiondb with parameters of type Sequence
SequenceEvaluator(Sequence seq, String method)
           
 

Uses of Sequence in org.axiondb.engine
 

Methods in org.axiondb.engine that return Sequence
 Sequence TransactableTableImpl.getSequence()
           
 Sequence BaseDatabase.getSequence(String name)
           
 Sequence SnapshotIsolationTransaction.getSequence(String name)
           
 

Methods in org.axiondb.engine that return types with arguments of type Sequence
protected  Iterator<Sequence> BaseDatabase.getSequences()
           
 

Methods in org.axiondb.engine with parameters of type Sequence
 void BaseDatabase.createSequence(Sequence seq)
           
 void DiskDatabase.createSequence(Sequence seq)
           
 void SnapshotIsolationTransaction.createSequence(Sequence seq)
           
 void TransactableTableImpl.setSequence(Sequence seq)
           
 

Uses of Sequence in org.axiondb.engine.commands
 

Methods in org.axiondb.engine.commands that return Sequence
 Sequence CreateSequenceCommand.createSequence(Database db)
           
 

Uses of Sequence in org.axiondb.engine.tables
 

Methods in org.axiondb.engine.tables that return Sequence
 Sequence BaseTable.getSequence()
           
 Sequence ExternalAxionDBTable.getSequence()
           
 Sequence TableView.getSequence()
           
 Sequence ExternalDatabaseTable.getSequence()
           
 

Methods in org.axiondb.engine.tables with parameters of type Sequence
 void BaseTable.setSequence(Sequence seq)
           
 void ExternalAxionDBTable.setSequence(Sequence seq)
           
 void TableView.setSequence(Sequence seq)
           
 void BaseDiskTable.setSequence(Sequence seq)
           
 void ExternalDatabaseTable.setSequence(Sequence seq)
           
 

Uses of Sequence in org.axiondb.event
 

Constructors in org.axiondb.event with parameters of type Sequence
DatabaseSequenceEvent(Sequence seq)