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.dataset   
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.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.dataset
 

Subclasses of GeneratorProxy in org.databene.benerator.dataset
 class AbstractDatasetGenerator<E>
          Abstract implementation of the DatasetBasedGenerator interface.
 class AtomicDatasetGenerator<E>
          DatasetBasedGenerator implementation which bases on an atomic dataset.
 

Uses of GeneratorProxy in org.databene.benerator.distribution
 

Subclasses of GeneratorProxy in org.databene.benerator.distribution
 class DistributingGenerator<E>
          General purpose generator proxy which is supposed to work with any distribution.
 class IndexBasedSampleGeneratorProxy<E>
          Internal generator which reads all products of a source generator and provides them with an index-based strategy.
 

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, granularity, 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 RegexStringGenerator
          Generates Strings that comply to a regular expression.
 class StringGenerator
          String Generator which offers a wide range of options for generating strings.
 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.
 class UniqueIntsGenerator
          Creates unique pseudo-random int arrays.
 

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.
 class SharedGenerator<E>
          Proxy for generators that are used by several clients.
 

Uses of GeneratorProxy in org.databene.benerator.wrapper
 

Subclasses of GeneratorProxy in org.databene.benerator.wrapper
 class AsNonNullGenerator<E>
          Adapter class which makes an arbitrary Generator available as NonNullGenerator.
 class CyclicGeneratorProxy<E>
          Generator proxy that 'loops' through a source Generator, calling reset() each time the source becomes unavailable.
 class LastFlagGenerator
          Proxies a Generator, examines its generated ProductWrappers for the "last" tag and, if one is found, replaces a boolean array value at a given index (LastFlagGenerator.indexOfLastFlag) with true, otherwise with false.
 class LastProductDetector<E>
          Wraps another Generator, finds out which is the last generated object and tags that with "last"="true".
 class MultiSourceArrayGenerator<S>
          Keeps an array of generators, of which it combines the products to an array.
 class NonClosingGeneratorProxy<E>
          Generator proxy that prevents its delegate from being closed.
 class NonNullGeneratorProxy<E>
          GeneratorProxy implementation which implements the NonNullGenerator interface and supports its implementors as source Generator.
 class NShotGeneratorProxy<E>
          Generator proxy which forwards a limited number of products from another generator.
 class NullInjectingGeneratorProxy<E>
          GeneratorProxy implementation which injects a given quota of null values in the original generator's results.
 class NullStartingGenerator<E>
          Generator implementation which wraps a source Generator but generates a null value before forwarding the products of the source.
 class OffsetBasedGenerator<E>
          Generator proxy which hides the first products of its source generator.
 class WeighingGeneratorWrapper<E>
          Wraps an ordinary Generator with a WeightedGenerator interface requiring an explicit weight setting.
 

Uses of GeneratorProxy in org.databene.domain.address
 

Subclasses of GeneratorProxy in org.databene.domain.address
 class CityGenerator
          Generates City objects.
 class CountryGenerator
          Generates a random country.
 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 CompanyNameGenerator
          Generates company names.
 class DepartmentNameGenerator
          Creates random department names based on a Locale-specific CSV file.
 class LegalFormGenerator
          Generates the abbreviated strings for legal forms of organizations.
 class SectorGenerator
          Generator implementation which creates names of industry sectors.
 

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
          Generates a given name for a person.
 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 DBSequenceGenerator
          Generates Long values from a database sequence.
 class QueryGenerator<E>
          Generates values based on a database query.
 class QueryLongGenerator
          Generates Long values based on a database query.
 



Copyright © 2013. All Rights Reserved.