Uses of Class
org.databene.benerator.distribution.Sequence

Packages that use Sequence
org.databene.benerator.distribution   
org.databene.benerator.distribution.sequence   
org.databene.domain.math   
 

Uses of Sequence in org.databene.benerator.distribution
 

Subclasses of Sequence in org.databene.benerator.distribution
 class LongBasedSequence
          Helper class that serves as parent for individual Sequence implementations that are based on a Long-value generator (Generator<Long>).
 

Fields in org.databene.benerator.distribution declared as Sequence
static Sequence SequenceManager.BIT_REVERSE_SEQUENCE
           
static Sequence SequenceManager.CUMULATED_SEQUENCE
           
static Sequence SequenceManager.EXPAND_SEQUENCE
           
static Sequence SequenceManager.FIBONACCI_SEQUENCE
           
static Sequence SequenceManager.INCREMENT_SEQUENCE
           
static Sequence SequenceManager.PADOVAN_SEQUENCE
           
static Sequence SequenceManager.RANDOM_SEQUENCE
           
static Sequence SequenceManager.RANDOM_WALK_SEQUENCE
           
static Sequence SequenceManager.SHUFFLE_SEQUENCE
           
static Sequence SequenceManager.SINGLE_SEQUENCE
           
static Sequence SequenceManager.STEP_SEQUENCE
           
static Sequence SequenceManager.WEDGE_SEQUENCE
           
 

Methods in org.databene.benerator.distribution that return Sequence
static Sequence SequenceManager.getRegisteredSequence(java.lang.String name, boolean required)
           
static Sequence SequenceManager.register(java.lang.String name, Sequence sequence)
           
 

Methods in org.databene.benerator.distribution that return types with arguments of type Sequence
static java.util.Collection<Sequence> SequenceManager.registeredSequences()
           
 

Methods in org.databene.benerator.distribution with parameters of type Sequence
static Sequence SequenceManager.register(java.lang.String name, Sequence sequence)
           
 

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

Subclasses of Sequence in org.databene.benerator.distribution.sequence
 class BitReverseSequence
          Sequence implementation for a distribution that creates the bit-reverses (r) of a continuous series, e.g. r(1), r(2), r(3), ...; the numbers produced by a related generator are unique as long as the generator is not reset.
 class CumulatedSequence
          Sequence implementation for an efficient bell-like distribution.
 class ExpandSequence
          Sequence implementation that makes use of Benerator's ExpandGeneratorProxy for distributing data of unlimited volume in a unique or non-unique manner.
 class HeadSequence
          Sequence implementation that returns the first n values of another Generator (default 1).
 class LiteralSequence
          Sequence implementation that provides values specified in a comma-separated value list, use like "new PredefinedSequence('A', 'B', 'C')" or "new PredefinedSequence(5, 7, 11)".
 class RandomSequence
          Sequence implementation that creates generators with a random uniform distribution.
 class RandomWalkSequence
          Random Walk Sequence implementation that supports a variable step width.
 class RepeatSequence
          Distribution that repeats consecutive elements or numbers.
 class ShuffleSequence
          Sequence implementation that implements a 'shuffle' behavior, by continuously incrementing a base value by a constant value and, when iterated through the number range, restarts with a value incremented by one.
 class StepSequence
          Creates numbers by continuously incrementing a base value by a constant amount.
 class WedgeSequence
          Sequence implementation that creates Number Generator with a wedge distribution.
 class WeightedNumbers<E>
          Generates numbers with weights that are defined using a literal, for example "1^3,2^7" would cause generation of 30% '1' values and 70% '2' values.
 

Uses of Sequence in org.databene.domain.math
 

Subclasses of Sequence in org.databene.domain.math
 class FibonacciSequence
          Sequence-based implementation of the Fibonacci Sequence

Created at 03.07.2009 10:43:09
 class PadovanSequence
          Sequence-based implementation of the Padovan Sequence

Created at 03.07.2009 13:14:05
 



Copyright © 2013. All Rights Reserved.