G H I N O R U
G
- Generator<T> - Interface in org.refcodes.generator
-
A
Generatorgenerates objects of a dedicated type in mass production. - getInstance() - Static method in class org.refcodes.generator.UniqueIdGeneratorSingleton
-
Retrieves the
UniqueIdGeneratorSingleton.
H
- hasNext() - Method in interface org.refcodes.generator.Generator
- hasNext() - Method in class org.refcodes.generator.UniqueIdGeneratorImpl
I
- IdGenerator - Interface in org.refcodes.generator
-
The Interface IdGenerator.
- initSeed() - Static method in class org.refcodes.generator.UniqueIdGeneratorImpl
-
This method initializes the ID generator, it is invoked upon loading the utility class by the class loader (static block), though it may be called manually in case of ID collisions.
N
- next() - Method in interface org.refcodes.generator.Generator
-
Generates a next item.
- next() - Method in class org.refcodes.generator.UniqueIdGeneratorImpl
-
Generates a next item.
O
- org.refcodes.generator - package org.refcodes.generator
-
A generator is a value provider providing one value after the other without further parameters required.
R
- remove() - Method in class org.refcodes.generator.UniqueIdGeneratorImpl
U
- UniqueIdGeneratorImpl - Class in org.refcodes.generator
-
The
UniqueIdGeneratorImplis an implementation of theGeneratorcapable of generating IDStringinstances unique on the system on which them were generated to IDs generated with the sameUniqueIdGeneratorImplon another system. - UniqueIdGeneratorImpl() - Constructor for class org.refcodes.generator.UniqueIdGeneratorImpl
-
Constructs a
UniqueIdGeneratorImplwith a default ID length of 36. - UniqueIdGeneratorImpl(int) - Constructor for class org.refcodes.generator.UniqueIdGeneratorImpl
-
Constructs a
UniqueIdGeneratorImplwith the provided ID length. - UniqueIdGeneratorSingleton - Class in org.refcodes.generator
-
The Class UniqueIdGeneratorSingleton.