| java.lang.Object org.axiondb.Sequence
Sequence | public class Sequence implements Serializable(Code) | | A database sequence. A sequence provides a mechanism for obtaining unique integer
values from the database.
Note: If increment value is negative, then the sequence generator is a descending
sequence generator; otherwise, it is an ascending sequence generator.
Note: The data type of a sequence generator must be exact numeric with scale 0.
version: $Revision: 1.15 $ $Date: 2007/11/13 19:04:02 $ author: Chuck Burdick author: Ahimanikya Satapathy |
Field Summary | |
public static int | RADIX |
RADIX | public static int RADIX(Code) | | |
Sequence | public Sequence()(Code) | | |
Sequence | public Sequence(String name, int startVal)(Code) | | Create a sequence starting whose initial value is startVal .
|
equals | public boolean equals(Object otherobject)(Code) | | Returns true iff otherobject is a
Sequence whose
name are equal to mine.
|
getName | public String getName()(Code) | | Get the name of this sequence.
|
isCycle | public boolean isCycle()(Code) | | |
|
|