Uses of Interface
org.databene.benerator.Consumer

Packages that use Consumer
org.databene.benerator The root package for the databene-generator library. 
org.databene.benerator.consumer   
org.databene.benerator.engine   
org.databene.benerator.engine.expression.xml   
org.databene.benerator.engine.statement   
org.databene.benerator.primitive Implements Generators for simple Java types. 
org.databene.benerator.storage   
org.databene.benerator.test   
org.databene.platform.contiperf   
org.databene.platform.csv   
org.databene.platform.db platform adapter for databases. 
org.databene.platform.dbunit   
org.databene.platform.fixedwidth   
org.databene.platform.flat   
org.databene.platform.java platform adapter for JavaBeans. 
org.databene.platform.script   
org.databene.platform.xls   
org.databene.platform.xml   
 

Uses of Consumer in org.databene.benerator
 

Methods in org.databene.benerator that return Consumer
abstract  Consumer BeneratorFactory.configureConsumer(Consumer consumer, BeneratorContext context)
           
 

Methods in org.databene.benerator with parameters of type Consumer
abstract  Consumer BeneratorFactory.configureConsumer(Consumer consumer, BeneratorContext context)
           
 

Uses of Consumer in org.databene.benerator.consumer
 

Subinterfaces of Consumer in org.databene.benerator.consumer
 interface FileExporter
          Common interface for all classes that export .
 

Classes in org.databene.benerator.consumer that implement Consumer
 class AbstractConsumer
          Abstract implementation of the Consumer interface.
 class BadDataConsumer
          Consumer proxy that forwards data to 'real consumer' and if the real consumer raises an error, forwards the data to a 'bad data consumer'.
 class ConsoleExporter
          Exports generated objects to the standard output.
 class ConsumerChain
          Combines several Processors under one Processor interface.
 class ConsumerProxy
          Parent class for Consumers that serve as proxy to other Consumers.
 class FormattingConsumer
          Provides a datePattern property for child classes.
 class ListConsumer
          Consumer implementation that stores all consumed objects in a List.
 class LoggingConsumer
          A Consumer that logs the entities that it receives at info level.
 class MappingEntityConsumer
          Proxy to a Consumer which maps attribute names of the entities.
 class NoConsumer
          Empty Consumer implementation which does nothing.
 class NonClosingConsumerProxy
          Consumer proxy that prevents its delegate from being closed.
 class TextFileExporter
          Parent class for Exporters that export data to a text file.
 

Fields in org.databene.benerator.consumer declared as Consumer
protected  Consumer ConsumerProxy.target
           
 

Methods in org.databene.benerator.consumer that return Consumer
 Consumer ConsumerChain.getComponent(int index)
           
 Consumer ConsumerProxy.getTarget()
           
 

Methods in org.databene.benerator.consumer that return types with arguments of type Consumer
 java.util.List<Consumer> ConsumerChain.getComponents()
           
 

Methods in org.databene.benerator.consumer with parameters of type Consumer
 void ConsumerChain.addComponent(Consumer component)
           
 void ConsumerChain.setComponents(Consumer... components)
           
 void ConsumerProxy.setTarget(Consumer target)
           
 

Constructors in org.databene.benerator.consumer with parameters of type Consumer
BadDataConsumer(Consumer badDataTarget, Consumer realTarget)
           
ConsumerChain(Consumer... components)
           
ConsumerProxy(Consumer target)
           
MappingEntityConsumer(Consumer target, java.lang.String mappingSpec)
           
NonClosingConsumerProxy(Consumer target)
           
 

Uses of Consumer in org.databene.benerator.engine
 

Methods in org.databene.benerator.engine that return Consumer
 Consumer DefaultBeneratorFactory.configureConsumer(Consumer consumer, BeneratorContext context)
           
 

Methods in org.databene.benerator.engine with parameters of type Consumer
 Consumer DefaultBeneratorFactory.configureConsumer(Consumer consumer, BeneratorContext context)
           
 

Uses of Consumer in org.databene.benerator.engine.expression.xml
 

Methods in org.databene.benerator.engine.expression.xml that return Consumer
 Consumer XMLConsumerExpression.evaluate(org.databene.commons.Context context)
           
 

Uses of Consumer in org.databene.benerator.engine.statement
 

Methods in org.databene.benerator.engine.statement that return Consumer
 Consumer GenerateAndConsumeTask.getConsumer()
           
 

Method parameters in org.databene.benerator.engine.statement with type arguments of type Consumer
 void GenerateAndConsumeTask.setConsumer(org.databene.script.Expression<Consumer> consumerExpr)
           
 

Constructors in org.databene.benerator.engine.statement with parameters of type Consumer
ConsumptionStatement(Consumer consumer, boolean start, boolean finish)
           
 

Uses of Consumer in org.databene.benerator.primitive
 

Classes in org.databene.benerator.primitive that implement Consumer
 class AddingConsumer
          Consumer implementation which sums up the values of a 'feature' of all objects it consumes and return the sum as 'sum' property of type 'type'.
 

Uses of Consumer in org.databene.benerator.storage
 

Classes in org.databene.benerator.storage that implement Consumer
 class StorageSystemConsumer
          Stores an Entity in the associated StorageSystem.
 class StorageSystemInserter
          Consumer implementation that inserts entities into database tables.
 class StorageSystemUpdater
          Consumer implementation that updates database rows.
 

Methods in org.databene.benerator.storage that return Consumer
 Consumer AbstractStorageSystem.updater()
           
 

Uses of Consumer in org.databene.benerator.test
 

Classes in org.databene.benerator.test that implement Consumer
 class ConsumerMock
          Mock implementation of the Consumer interface to be used for testing.
 

Uses of Consumer in org.databene.platform.contiperf
 

Classes in org.databene.platform.contiperf that implement Consumer
 class PerfTrackingConsumer
          Consumer implementation that calls a ContiPerf PerfTrackingConsumer.
 

Methods in org.databene.platform.contiperf with parameters of type Consumer
 void PerfTrackingConsumer.setTarget(Consumer target)
           
 

Constructors in org.databene.platform.contiperf with parameters of type Consumer
ConsumerInvoker(java.lang.String id, Consumer consumer)
           
PerfTrackingConsumer(Consumer target)
           
PerfTrackingConsumer(Consumer target, java.lang.String id)
           
 

Uses of Consumer in org.databene.platform.csv
 

Classes in org.databene.platform.csv that implement Consumer
 class CSVEntityExporter
          Exports Entities to a CSV file.
 

Uses of Consumer in org.databene.platform.db
 

Classes in org.databene.platform.db that implement Consumer
 class SQLEntityExporter
          Exports Entities to a SQL file.
 

Methods in org.databene.platform.db that return Consumer
 Consumer DBSystem.inserter()
           
 Consumer DBSystem.inserter(java.lang.String tableName)
           
 

Uses of Consumer in org.databene.platform.dbunit
 

Classes in org.databene.platform.dbunit that implement Consumer
 class DbUnitEntityExporter
          Exports entities in DbUnit XML file format.
 

Uses of Consumer in org.databene.platform.fixedwidth
 

Classes in org.databene.platform.fixedwidth that implement Consumer
 class FixedWidthEntityExporter
          Exports Entities to fixed-width files.
 

Uses of Consumer in org.databene.platform.flat
 

Classes in org.databene.platform.flat that implement Consumer
 class FlatFileEntityExporter
          Deprecated. Replaced with class FixedWidthEntityExporter
 

Uses of Consumer in org.databene.platform.java
 

Classes in org.databene.platform.java that implement Consumer
 class JavaInvoker
          Consumer implementation that maps input data to parameters and invokes a method on a Java object with them.
 

Uses of Consumer in org.databene.platform.script
 

Classes in org.databene.platform.script that implement Consumer
 class ScriptedEntityExporter
          Script based entity exporter.
 

Uses of Consumer in org.databene.platform.xls
 

Classes in org.databene.platform.xls that implement Consumer
 class XLSEntityExporter
          Exports entities to Excel sheets.
 

Uses of Consumer in org.databene.platform.xml
 

Classes in org.databene.platform.xml that implement Consumer
 class XMLEntityExporter
          Writes Entities to an XML file.
 



Copyright © 2013. All Rights Reserved.