Uses of Class
org.databene.benerator.wrapper.GeneratorProxy

Packages that use GeneratorProxy
org.databene.benerator.composite   
org.databene.benerator.csv Provides String generators that parse CSV sources. 
org.databene.benerator.distribution   
org.databene.benerator.distribution.sequence   
org.databene.benerator.engine   
org.databene.benerator.primitive Implements Generators for simple Java types. 
org.databene.benerator.primitive.regex Provides a generator that creates String that match a regular expression. 
org.databene.benerator.sample Provides Generators that are based on collections of samples. 
org.databene.benerator.util Provides utility classes for data generation. 
org.databene.benerator.wrapper Defines generators that wrap other generators and forward or convert their products 
org.databene.domain.address databene domain for address data. 
org.databene.domain.br   
org.databene.domain.finance   
org.databene.domain.net   
org.databene.domain.organization   
org.databene.domain.person databene domain for Person data. 
org.databene.domain.product   
org.databene.platform.db platform adapter for databases. 
 

Uses of GeneratorProxy in org.databene.benerator.composite
 

Subclasses of GeneratorProxy in org.databene.benerator.composite
 class SourceAwareGenerator<E>
          Generator proxy that combines a 'source' entity generator with variable support and ComponentBuilders.
 

Uses of GeneratorProxy in org.databene.benerator.csv
 

Subclasses of GeneratorProxy in org.databene.benerator.csv
 class LocalCSVGenerator<E>
          Generates data from a localized csv file.
 class SequencedDatasetCSVGenerator<E>
          Generates values from a dataset based on a Sequence.
 class WeightedDatasetCSVGenerator<E>
          Generates data from a csv file set that is organized as Dataset.
 

Uses of GeneratorProxy in org.databene.benerator.distribution
 

Subclasses of GeneratorProxy in org.databene.benerator.distribution
 class DistributingGenerator<E>
          Collects all products a source Generator is able to generate, puts them into a list and serves the list elements based on its Distribution.
 class DistributingSampleGeneratorProxy<E>
          Uses a SampleGenerator and a Distribution's Distribution.createGenerator(Class, Number, Number, Number, boolean) method for acting as a Generator proxy.
 

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

Subclasses of GeneratorProxy in org.databene.benerator.distribution.sequence
 class ExpandGeneratorProxy<E>
          GeneratorProxy implementation that supports distribution of unlimited data volumes (provided by a source generator) in a unique or non-unique manner.
 

Uses of GeneratorProxy in org.databene.benerator.engine
 

Subclasses of GeneratorProxy in org.databene.benerator.engine
 class DescriptorBasedGenerator
          Provides easy programmatic access to generators defined in an XML descriptor file.
 

Uses of GeneratorProxy in org.databene.benerator.primitive
 

Subclasses of GeneratorProxy in org.databene.benerator.primitive
 class CharacterGenerator
          Generates Character values from a character set or a regular expression.
 class DynamicCountGenerator
          Behaves similar to the DynamicLongGenerator, but generates maxFallback values, if max is set to null.
 class DynamicLongGenerator
          Generator implementation that generates Long numbers, redefining the underlying distribution on each reset() by evaluating the min, max, precision, distribution and unique values.
 class LocalSequenceGenerator
          Local implementation of an increment Generator that behaves like a database sequence.
 class LuhnGenerator
          Generates numbers that pass a Luhn test.
 class TokenCombiner
          Generator implementation which takes cells from a CSV file as input and combines the cells by taking a cell value from a random row for each column and concatenating them to a string.
 

Uses of GeneratorProxy in org.databene.benerator.primitive.regex
 

Subclasses of GeneratorProxy in org.databene.benerator.primitive.regex
 class RegexStringGenerator
          Generates Strings that comply to a regular expression.
 

Uses of GeneratorProxy in org.databene.benerator.sample
 

Subclasses of GeneratorProxy in org.databene.benerator.sample
 class SequencedCSVSampleGenerator<E>
          Sample Generator for values that are read from a CSV file.
 class WeightedCSVSampleGenerator<E>
          Sample Generator for values that are read from a CSV file.
 class WeigthedLiteralGenerator<E>
          Generates values defined by a weighted or non-weighted value list literal, like "'A'^3,'B'^2", supporting weighted random generation and uniqueness.
 

Uses of GeneratorProxy in org.databene.benerator.util
 

Subclasses of GeneratorProxy in org.databene.benerator.util
 class FilteringGenerator<E>
          Generator proxy which takes the input of another Generator and only passes it if a boolean expression evaluates to true.
 

Uses of GeneratorProxy in org.databene.benerator.wrapper
 

Subclasses of GeneratorProxy in org.databene.benerator.wrapper
 class CompositeArrayGenerator<S>
          Keeps an array of generators, of which it combines the products to an array.
 class CyclicGeneratorProxy<E>
          Generator proxy that 'loops' through a source Generator, calling reset() each time the source becomes unavailable.
 class NShotGeneratorProxy<E>
          Generator proxy which forwards a limited number of products from another generator.
 class SkipGeneratorProxy<E>
          This forwards a source generator's products.
 

Uses of GeneratorProxy in org.databene.domain.address
 

Subclasses of GeneratorProxy in org.databene.domain.address
 class StreetNameGenerator
          Generates a street name for a region.
 

Uses of GeneratorProxy in org.databene.domain.br
 

Subclasses of GeneratorProxy in org.databene.domain.br
 class CNPJGenerator
          Generates Brazilian CNPJ numbers.
 

Uses of GeneratorProxy in org.databene.domain.finance
 

Subclasses of GeneratorProxy in org.databene.domain.finance
 class CreditCardNumberGenerator
          Creates credit card numbers.
 

Uses of GeneratorProxy in org.databene.domain.net
 

Subclasses of GeneratorProxy in org.databene.domain.net
 class TopLevelDomainGenerator
          A TopLevelDomainGenerator.
 class WebmailDomainGenerator
          A WebmailDomainGenerator.
 

Uses of GeneratorProxy in org.databene.domain.organization
 

Subclasses of GeneratorProxy in org.databene.domain.organization
 class DepartmentNameGenerator
          Creates random department names based on a Locale-specific CSV file.
 

Uses of GeneratorProxy in org.databene.domain.person
 

Subclasses of GeneratorProxy in org.databene.domain.person
 class AcademicTitleGenerator
          Creates a quota of academic titles.
 class BirthDateGenerator
          Creates Date objects for a person's birth day.
 class FamilyNameGenerator
          Generates family names.
 class GenderGenerator
          Generates Gender objects.
 class GivenNameGenerator
          (c) Copyright 2006 by Volker Bergmann Created: 09.06.2006 21:13:09
 class NobilityTitleGenerator
          Creates nobility titles at a defined quota.
 

Uses of GeneratorProxy in org.databene.domain.product
 

Subclasses of GeneratorProxy in org.databene.domain.product
 class EANGenerator
          Generates EAN8 and EAN13 codes at the configured ratio.
 

Uses of GeneratorProxy in org.databene.platform.db
 

Subclasses of GeneratorProxy in org.databene.platform.db
 class QueryGenerator<E>
          Generates values based on a database query.
 class QueryLongGenerator
          Generates Long values based on a database query.
 



Copyright © 2011. All Rights Reserved.