Uses of Class
org.databene.benerator.util.ThreadSafeNonNullGenerator

Packages that use ThreadSafeNonNullGenerator
org.databene.benerator.composite   
org.databene.benerator.distribution.sequence   
org.databene.benerator.primitive Implements Generators for simple Java types. 
org.databene.benerator.primitive.datetime   
org.databene.domain.address databene domain for address data. 
org.databene.domain.br   
org.databene.domain.person databene domain for Person data. 
org.databene.platform.db platform adapter for databases. 
 

Uses of ThreadSafeNonNullGenerator in org.databene.benerator.composite
 

Subclasses of ThreadSafeNonNullGenerator in org.databene.benerator.composite
 class BlankArrayGenerator
          Generates an array of fixed size filled with nulls.
 

Uses of ThreadSafeNonNullGenerator in org.databene.benerator.distribution.sequence
 

Subclasses of ThreadSafeNonNullGenerator in org.databene.benerator.distribution.sequence
 class BitReverseNaturalNumberGenerator
          Long Generator that implements a 'bitreverse' Long Sequence.
 class RandomBigDecimalGenerator
          Generates random BigDecimals with a uniform distribution.
 class RandomBigIntegerGenerator
          Generates random BigInteger with a uniform distribution.
 

Uses of ThreadSafeNonNullGenerator in org.databene.benerator.primitive
 

Subclasses of ThreadSafeNonNullGenerator in org.databene.benerator.primitive
 class BooleanGenerator
          Generates boolean values with a configurable quota of true values.
 class HibUUIDGenerator
          Creates UUIDs evaluating IP address, a JVM ID and timestamp.
 class IncrementalIdGenerator
          Generates unique long values incrementally.
 class IncrementalIntsGenerator
          Generates int arrays in the same manner in which decimal numbers are used.
 class IncrementGenerator
          Generates long values by continuously incrementing a base (min) value.
 class UUIDGenerator
          Creates UUIDs using UUID.randomUUID().
 

Uses of ThreadSafeNonNullGenerator in org.databene.benerator.primitive.datetime
 

Subclasses of ThreadSafeNonNullGenerator in org.databene.benerator.primitive.datetime
 class CurrentDateGenerator
          Generates java.util.Date objects that represent the current Date (time is 00:00:00).
 class CurrentDateTimeGenerator
          Generates java.util.Date objects that represent the current date and time.
 class CurrentMilliTimeGenerator
          Generates Long values that represent the current time in milliseconds.
 class CurrentNanoTimeGenerator
          Generates Long objects that represent the current system time in nanoseconds since 1970-01-01.
 class CurrentTimeGenerator
          Generates Date objects that represent the current time.
 class DayGenerator
          Generates dates with a granularity of days, months or years.
 

Uses of ThreadSafeNonNullGenerator in org.databene.domain.address
 

Subclasses of ThreadSafeNonNullGenerator in org.databene.domain.address
 class MobileNumberGenerator
          Generates mobile phone numbers.
 class PhoneNumberGenerator
          Generates landline or mobile phone numbers in a given Country.
 

Uses of ThreadSafeNonNullGenerator in org.databene.domain.br
 

Subclasses of ThreadSafeNonNullGenerator in org.databene.domain.br
 class CPFGenerator
          Generates Brazilian CPF numbers.
 

Uses of ThreadSafeNonNullGenerator in org.databene.domain.person
 

Subclasses of ThreadSafeNonNullGenerator in org.databene.domain.person
 class TINGenerator
          Generates European Tax Identification Numbers (like the German 'Steueridentifikationsnummer').
 

Uses of ThreadSafeNonNullGenerator in org.databene.platform.db
 

Subclasses of ThreadSafeNonNullGenerator in org.databene.platform.db
 class AbstractSequenceGenerator
          Abstract parent class for database-sequence-related Generators.
 class CachedSequenceGenerator
          Reads the current value of a sequence on first invocation, increases the value locally on subsequent calls and finally (on close()) updates the DB sequence with the local value.
 class PlainSequenceGenerator
          Generator implementation which provides sequence values from a database.
 



Copyright © 2013. All Rights Reserved.