Uses of Interface
org.databene.model.consumer.Consumer

Packages that use Consumer
org.databene.benerator.consumer   
org.databene.benerator.engine.expression.xml   
org.databene.benerator.engine.statement   
org.databene.benerator.primitive Implements Generators for simple Java types. 
org.databene.model.consumer   
org.databene.model.storage   
org.databene.platform.contiperf   
org.databene.platform.csv   
org.databene.platform.db platform adapter for databases. 
org.databene.platform.dbunit   
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.consumer
 

Classes in org.databene.benerator.consumer that implement Consumer
 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 ListConsumer
          Consumer implementation that stores all consumed objects in a List.
 

Constructors in org.databene.benerator.consumer with parameters of type Consumer
BadDataConsumer(Consumer badDataTarget, Consumer realTarget)
           
BadDataConsumer(Consumer badDataTarget, Consumer realTarget)
           
 

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

Methods in org.databene.benerator.engine.expression.xml that return Consumer
 Consumer<Entity> 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.commons.Expression<Consumer<?>> consumerExpr)
           
 

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.model.consumer
 

Subinterfaces of Consumer in org.databene.model.consumer
 interface FileExporter<E>
          Common interface for all classes that export .
 

Classes in org.databene.model.consumer that implement Consumer
 class AbstractConsumer<E>
          Abstract implementation of the Consumer interface.
 class ConsoleExporter
          Exports generated objects to the standard output.
 class ConsumerChain<E>
          Combines several Processors under one Processor interface.
 class ConsumerProxy<E>
          Parent class for Consumers that serve as proxy to other Consumers.
 class FormattingConsumer<E>
          Provides a datePattern property for child classes.
 class LoggingConsumer<E>
          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 TextFileExporter<E>
          Parent class for Exporters that export data to a text file.
 

Fields in org.databene.model.consumer declared as Consumer
protected  Consumer<E> ConsumerProxy.target
           
 

Methods in org.databene.model.consumer that return Consumer
 Consumer<E> ConsumerChain.getComponent(int index)
           
 

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

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

Constructors in org.databene.model.consumer with parameters of type Consumer
ConsumerChain(Consumer<E>... components)
           
ConsumerProxy(Consumer<E> target)
           
MappingEntityConsumer(Consumer<Entity> target, java.lang.String mappingSpec)
           
 

Uses of Consumer in org.databene.model.storage
 

Classes in org.databene.model.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.
 

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<java.lang.Object> target)
           
 

Constructors in org.databene.platform.contiperf with parameters of type Consumer
ConsumerInvoker(java.lang.String id, Consumer<java.lang.Object> consumer)
           
PerfTrackingConsumer(Consumer<java.lang.Object> target)
           
PerfTrackingConsumer(Consumer<java.lang.Object> 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<Entity> DBSystem.inserter()
           
 Consumer<Entity> DBSystem.inserter(java.lang.String table)
           
 Consumer<Entity> DBSystem.updater()
           
 

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

Classes in org.databene.platform.flat that implement Consumer
 class FlatFileEntityExporter
          Exports Entities to flat files.
 

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 © 2011. All Rights Reserved.