| |
|
| java.lang.Object org.jpox.util.SimpleSequence
SimpleSequence | public class SimpleSequence implements Sequence(Code) | | Simple implementation of a sequence that counts from 0 and increments
by 1 every time. Allocation is not necessary because it increments
a long value internally.
version: $Revision: 1.3 $ |
allocate | public void allocate(int arg0)(Code) | | See Also: javax.jdo.datastore.Sequence.allocate(int) |
current | public Object current()(Code) | | See Also: javax.jdo.datastore.Sequence.current |
currentValue | public long currentValue()(Code) | | See Also: javax.jdo.datastore.Sequence.currentValue |
getName | public String getName()(Code) | | See Also: javax.jdo.datastore.Sequence.getName |
next | public Object next()(Code) | | See Also: javax.jdo.datastore.Sequence.next |
nextValue | public long nextValue()(Code) | | See Also: javax.jdo.datastore.Sequence.nextValue |
|
|
|