G H I N O R U 

G

Generator<T> - Interface in org.refcodes.generator
A Generator generates objects of a dedicated type in mass production.
getInstance() - Static method in class org.refcodes.generator.UniqueIdGeneratorSingleton

H

hasNext() - Method in interface org.refcodes.generator.Generator
Tests whether the Generator is capable of generating a next() item.
hasNext() - Method in class org.refcodes.generator.UniqueIdGeneratorImpl
Tests whether the Generator is capable of generating a next() item.

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 UniqueIdGeneratorImpl is an implementation of the Generator capable of generating ID String instances unique on the system on which them were generated to IDs generated with the same UniqueIdGeneratorImpl on another system.
UniqueIdGeneratorImpl() - Constructor for class org.refcodes.generator.UniqueIdGeneratorImpl
Constructs a UniqueIdGeneratorImpl with a default ID length of 36.
UniqueIdGeneratorImpl(int) - Constructor for class org.refcodes.generator.UniqueIdGeneratorImpl
Constructs a UniqueIdGeneratorImpl with the provided ID length.
UniqueIdGeneratorSingleton - Class in org.refcodes.generator
The Class UniqueIdGeneratorSingleton.
G H I N O R U