Uses of Class
org.apache.commons.id.AbstractStringIdentifierGenerator

Packages that use AbstractStringIdentifierGenerator
org.apache.commons.id This package contains factories and implementation classes to generate unique identifiers. 
org.apache.commons.id.random This package contains identifier generators that return sequences of identifiers that appear to be random. 
org.apache.commons.id.serial This package contains identifier generators that yield sequences of identifiers that follow a prescribed order. 
 

Uses of AbstractStringIdentifierGenerator in org.apache.commons.id
 

Subclasses of AbstractStringIdentifierGenerator in org.apache.commons.id
 class CompositeIdentifierGenerator
          Identifier generator that concatenates the results of a list of string identifier generators.
 class ConstantIdentifierGenerator
          StringIdentifierGenerator that always returns the same string.
 

Uses of AbstractStringIdentifierGenerator in org.apache.commons.id.random
 

Subclasses of AbstractStringIdentifierGenerator in org.apache.commons.id.random
 class SessionIdGenerator
          SessionIdGenerator is an identifier generator that generates an alphanumeric 10+ character identifier.
 

Uses of AbstractStringIdentifierGenerator in org.apache.commons.id.serial
 

Subclasses of AbstractStringIdentifierGenerator in org.apache.commons.id.serial
 class AlphanumericGenerator
          AlphanumericGenerator is an identifier generator that generates an incrementing number in base 36 as a String object.
 class NumericGenerator
          NumericIdentifierGenerator is an Identifier Generator that generates an incrementing number as a String object.
 class PrefixedAlphanumericGenerator
          PrefixedAlphanumericGenerator is an identifier generator that generates an incrementing number in base 36 with a prefix as a String object.
 class PrefixedLeftPaddedNumericGenerator
          PrefixedLeftPaddedNumericGenerator is an Identifier Generator that generates a left-padded incrementing number with a prefix as a String object.
 class PrefixedNumericGenerator
          PrefixedNumericGenerator is an Identifier Generator that generates an incrementing number with a prefix as a String object.
 class TimeBasedAlphanumericIdentifierGenerator
          TimeBasedAlphanumericIdentifierGenerator is an identifier generator that generates an alphanumeric identifier in base 36 as a String object from the current UTC time and an internal counter.
 



Copyright © 2003-2008 The Apache Software Foundation. All Rights Reserved.