Uses of Class
de.mguennewig.pobjects.metadata.Sequence

Packages that use Sequence
de.mguennewig.pobjects The package de.mguennewig.pobjects provides an abstraction layer on top of a set of database tables by which table rows can be accessed transparently as Java objects. 
de.mguennewig.pobjects.event The package provides classes to listen to database changes performed over the PObject library. 
de.mguennewig.pobjects.filesystem This package contains a PObjects Container that uses the file system tree as a database table. 
de.mguennewig.pobjects.jdbc This package contains Container implementations that use a JDBC connection. 
de.mguennewig.pobjects.memdb This package contains a simple non-persistent Container implementation that operates only in memory. 
de.mguennewig.pobjects.metadata This package contains the metadata classes used by the PObject library. 
 

Uses of Sequence in de.mguennewig.pobjects
 

Methods in de.mguennewig.pobjects with parameters of type Sequence
 java.lang.String Container.getSequenceCurrentValue(Sequence seq)
          Returns the current value of the given sequence.
 java.lang.String Container.getSequenceNextValue(Sequence seq)
          Returns a new value of the given sequence.
 

Uses of Sequence in de.mguennewig.pobjects.event
 

Methods in de.mguennewig.pobjects.event with parameters of type Sequence
 java.lang.String ContainerWrapper.getSequenceCurrentValue(Sequence seq)
          Returns the current value of the given sequence.
 java.lang.String ContainerWrapper.getSequenceNextValue(Sequence seq)
          Returns a new value of the given sequence.
 

Uses of Sequence in de.mguennewig.pobjects.filesystem
 

Methods in de.mguennewig.pobjects.filesystem with parameters of type Sequence
 java.lang.String FileSystemContainer.getSequenceCurrentValue(Sequence seq)
          Returns the current value of the given sequence.
 java.lang.String FileSystemContainer.getSequenceNextValue(Sequence seq)
          Returns a new value of the given sequence.
 

Uses of Sequence in de.mguennewig.pobjects.jdbc
 

Methods in de.mguennewig.pobjects.jdbc with parameters of type Sequence
 java.lang.String SqlServerContainer.getSequenceCurrentValue(Sequence seq)
          Returns the current value of the given sequence.
 java.lang.String SQLiteContainer.getSequenceCurrentValue(Sequence seq)
          Returns the current value of the given sequence.
 java.lang.String PostgreSQLContainer.getSequenceCurrentValue(Sequence seq)
          Returns the current value of the given sequence.
 java.lang.String OracleContainer.getSequenceCurrentValue(Sequence seq)
          Returns the current value of the given sequence.
 java.lang.String MySQLContainer.getSequenceCurrentValue(Sequence seq)
          Returns the current value of the given sequence.
 java.lang.String SqlServerContainer.getSequenceNextValue(Sequence seq)
          Returns a new value of the given sequence.
 java.lang.String SQLiteContainer.getSequenceNextValue(Sequence seq)
          Returns a new value of the given sequence.
 java.lang.String PostgreSQLContainer.getSequenceNextValue(Sequence seq)
          Returns a new value of the given sequence.
 java.lang.String OracleContainer.getSequenceNextValue(Sequence seq)
          Returns a new value of the given sequence.
 java.lang.String MySQLContainer.getSequenceNextValue(Sequence seq)
          Returns a new value of the given sequence.
 

Uses of Sequence in de.mguennewig.pobjects.memdb
 

Methods in de.mguennewig.pobjects.memdb with parameters of type Sequence
 java.lang.String MemoryContainer.getSequenceCurrentValue(Sequence seq)
          Returns the current value of the given sequence.
 java.lang.String MemoryContainer.getSequenceNextValue(Sequence seq)
          Returns a new value of the given sequence.
 

Uses of Sequence in de.mguennewig.pobjects.metadata
 

Methods in de.mguennewig.pobjects.metadata that return Sequence
 Sequence IdField.getSequence()
           
 

Constructors in de.mguennewig.pobjects.metadata with parameters of type Sequence
IdField(java.lang.String name, java.lang.String schemaName, Type type, Sequence sequence)
          Creates a new Id field.
IdField(Type type, Sequence sequence)
          Creates a new Id field.