Interface IdSequence<D>
-
- All Known Subinterfaces:
GuidGenerator
,NumericIdSequence<N>
- All Known Implementing Classes:
IntegerIdSequence
,PersistableIntIdSequence
,PersistableLongIdSequence
,PrefixedIdSequence
,PseudoRandomGuidGenerator
public interface IdSequence<D>
Sequience of values for one identifier.- Since:
- 9.0
- Author:
- Leonid Bushuev from JetBrains
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description D
nextOne()
Produces the new identifier.
-
-
-
Method Detail
-
nextOne
@NotNull D nextOne()
Produces the new identifier.- Returns:
- the new identifier.
-
-