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.event Event model with listeners for database actions 
 

Uses of Sequence in org.axiondb
 

Methods in org.axiondb that return Sequence
 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
 

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 BaseDatabase.getSequence(String name)
           
 Sequence SnapshotIsolationTransaction.getSequence(String name)
           
 

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)
           
 

Uses of Sequence in org.axiondb.event
 

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