Uses of Class
org.databene.model.data.Entity

Packages that use Entity
org.databene.benerator.composite   
org.databene.benerator.engine.expression.xml   
org.databene.benerator.factory   
org.databene.model.consumer   
org.databene.model.data   
org.databene.model.storage   
org.databene.platform.array   
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.map   
org.databene.platform.script   
org.databene.platform.xls   
org.databene.platform.xml   
 

Uses of Entity in org.databene.benerator.composite
 

Methods in org.databene.benerator.composite that return Entity
 Entity EntityRenamer.convert(Entity entity)
           
 Entity ComponentTypeConverter.convert(Entity entity)
           
 Entity SimpleTypeEntityGenerator.generate()
           
 Entity BlankEntityGenerator.generate()
           
static Entity EntityRenamer.rename(Entity entity, java.lang.String targetName)
           
 

Methods in org.databene.benerator.composite that return types with arguments of type Entity
 java.lang.Class<Entity> SimpleTypeEntityGenerator.getGeneratedType()
           
 java.lang.Class<Entity> BlankEntityGenerator.getGeneratedType()
           
 

Methods in org.databene.benerator.composite with parameters of type Entity
 Entity EntityRenamer.convert(Entity entity)
           
 Entity ComponentTypeConverter.convert(Entity entity)
           
static Entity EntityRenamer.rename(Entity entity, java.lang.String targetName)
           
 

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

Methods in org.databene.benerator.engine.expression.xml that return types with arguments of type Entity
 Consumer<Entity> XMLConsumerExpression.evaluate(org.databene.commons.Context context)
           
 

Uses of Entity in org.databene.benerator.factory
 

Methods in org.databene.benerator.factory that return types with arguments of type Entity
static Generator<Entity> ComplexTypeGeneratorFactory.createComplexTypeGenerator(java.lang.String instanceName, ComplexTypeDescriptor type, Uniqueness uniqueness, BeneratorContext context)
           
static java.util.List<ComponentBuilder<Entity>> ComplexTypeGeneratorFactory.createMutatingComponentBuilders(ComplexTypeDescriptor descriptor, Uniqueness ownerUniqueness, BeneratorContext context)
           
static Generator<Entity> ComplexTypeGeneratorFactory.createMutatingEntityGenerator(java.lang.String name, ComplexTypeDescriptor descriptor, Uniqueness ownerUniqueness, BeneratorContext context, Generator<Entity> source)
           
static Generator<Entity> DescriptorUtil.createRawEntitySourceGenerator(TypeDescriptor complexType, BeneratorContext context, java.lang.String sourceName, SourceFactory factory)
           
 

Method parameters in org.databene.benerator.factory with type arguments of type Entity
static Generator<Entity> ComplexTypeGeneratorFactory.createMutatingEntityGenerator(java.lang.String name, ComplexTypeDescriptor descriptor, Uniqueness ownerUniqueness, BeneratorContext context, Generator<Entity> source)
           
 

Uses of Entity in org.databene.model.consumer
 

Methods in org.databene.model.consumer with parameters of type Entity
 void MappingEntityConsumer.finishConsuming(Entity object)
           
 void MappingEntityConsumer.startConsuming(Entity input)
           
 

Constructor parameters in org.databene.model.consumer with type arguments of type Entity
MappingEntityConsumer(Consumer<Entity> target, java.lang.String mappingSpec)
           
 

Uses of Entity in org.databene.model.data
 

Methods in org.databene.model.data that return Entity
 Entity ComponentNameMapper.convert(Entity input)
           
 

Methods in org.databene.model.data that return types with arguments of type Entity
 java.lang.Class<Entity> AbstractEntitySource.getType()
           
 

Methods in org.databene.model.data with parameters of type Entity
 Entity ComponentNameMapper.convert(Entity input)
           
 java.lang.Object ComponentAccessor.getValue(Entity target)
           
 

Constructors in org.databene.model.data with parameters of type Entity
Entity(Entity prototype)
           
 

Uses of Entity in org.databene.model.storage
 

Methods in org.databene.model.storage that return types with arguments of type Entity
 org.databene.commons.TypedIterable<Entity> StorageSystem.queryEntities(java.lang.String type, java.lang.String selector, org.databene.commons.Context context)
          Creates an iterator that provides all entities of given type.
 

Methods in org.databene.model.storage with parameters of type Entity
 void StorageSystemUpdater.startConsuming(Entity entity)
           
 void StorageSystemInserter.startConsuming(Entity entity)
           
 void StorageSystem.store(Entity entity)
          Persists a new entity.
 void StorageSystem.update(Entity entity)
          Updates an existing entity.
 

Uses of Entity in org.databene.platform.array
 

Methods in org.databene.platform.array that return Entity
 Entity Array2EntityConverter.convert(java.lang.Object[] sourceValue)
           
 

Methods in org.databene.platform.array with parameters of type Entity
 java.lang.Object[] Entity2ArrayConverter.convert(Entity entity)
           
 

Uses of Entity in org.databene.platform.csv
 

Methods in org.databene.platform.csv that return Entity
 Entity CSVEntityIterator.next()
           
 

Methods in org.databene.platform.csv that return types with arguments of type Entity
 org.databene.commons.HeavyweightIterator<Entity> CSVEntitySource.iterator()
           
static java.util.List<Entity> CSVEntityIterator.parseAll(java.lang.String uri, char separator, java.lang.String encoding, ComplexTypeDescriptor descriptor, org.databene.commons.Converter<java.lang.String,java.lang.String> preprocessor, org.databene.commons.Patterns patterns)
           
 

Methods in org.databene.platform.csv with parameters of type Entity
protected  void CSVEntityExporter.postInitPrinter(Entity entity)
           
protected  void CSVEntityExporter.startConsumingImpl(Entity entity)
           
 

Uses of Entity in org.databene.platform.db
 

Methods in org.databene.platform.db that return Entity
static Entity ResultSet2EntityConverter.convert(java.sql.ResultSet resultSet, ComplexTypeDescriptor descriptor)
           
 Entity ResultSetEntityIterator.next()
           
 Entity DBSystem.queryEntityById(java.lang.String tableName, java.lang.Object id)
           
 

Methods in org.databene.platform.db that return types with arguments of type Entity
 java.lang.Class<Entity> EntityResultSetIterable.getType()
           
 Consumer<Entity> DBSystem.inserter()
           
 Consumer<Entity> DBSystem.inserter(java.lang.String table)
           
 org.databene.commons.HeavyweightIterator<Entity> EntityResultSetIterable.iterator()
           
 org.databene.commons.TypedIterable<Entity> DBSystem.queryEntities(java.lang.String type, java.lang.String selector, org.databene.commons.Context context)
           
 Consumer<Entity> DBSystem.updater()
           
 

Methods in org.databene.platform.db with parameters of type Entity
protected  void SQLEntityExporter.postInitPrinter(Entity entity)
           
protected  void SQLEntityExporter.startConsumingImpl(Entity entity)
           
 void DBSystem.store(Entity entity)
           
 void DBSystem.update(Entity entity)
           
 

Uses of Entity in org.databene.platform.dbunit
 

Methods in org.databene.platform.dbunit that return Entity
 Entity DbUnitEntityIterator.next()
           
 

Methods in org.databene.platform.dbunit that return types with arguments of type Entity
 org.databene.commons.HeavyweightIterator<Entity> DbUnitEntitySource.iterator()
           
 

Methods in org.databene.platform.dbunit with parameters of type Entity
 void DbUnitEntityExporter.startConsuming(Entity entity)
           
 

Uses of Entity in org.databene.platform.flat
 

Fields in org.databene.platform.flat with type parameters of type Entity
protected  org.databene.commons.Converter<java.lang.String[],Entity> FlatFileEntitySource.converter
           
 

Methods in org.databene.platform.flat that return types with arguments of type Entity
 java.lang.Class<Entity> FlatFileEntitySource.getType()
           
 org.databene.commons.HeavyweightIterator<Entity> FlatFileEntitySource.iterator()
           
 

Methods in org.databene.platform.flat with parameters of type Entity
protected  void FlatFileEntityExporter.postInitPrinter(Entity entity)
           
protected  void FlatFileEntityExporter.startConsumingImpl(Entity entity)
           
 

Uses of Entity in org.databene.platform.java
 

Methods in org.databene.platform.java that return Entity
 Entity Bean2EntityConverter.convert(java.lang.Object bean)
           
 

Methods in org.databene.platform.java with parameters of type Entity
 T Entity2BeanConverter.convert(Entity entity)
           
 

Uses of Entity in org.databene.platform.map
 

Methods in org.databene.platform.map that return Entity
 Entity Map2EntityConverter.convert(java.util.Map map)
           
 

Methods in org.databene.platform.map with parameters of type Entity
 java.util.Map<java.lang.String,java.lang.Object> Entity2MapConverter.convert(Entity sourceValue)
           
 

Uses of Entity in org.databene.platform.script
 

Methods in org.databene.platform.script with parameters of type Entity
protected  void ScriptedEntityExporter.postInitPrinter(Entity entity)
           
protected  void ScriptedEntityExporter.startConsumingImpl(Entity entity)
           
 

Uses of Entity in org.databene.platform.xls
 

Methods in org.databene.platform.xls that return Entity
 Entity XLSEntityIterator.next()
           
 

Methods in org.databene.platform.xls that return types with arguments of type Entity
 org.databene.commons.HeavyweightIterator<Entity> XLSEntitySource.iterator()
           
static java.util.List<Entity> XLSEntityIterator.parseAll(java.lang.String uri, org.databene.commons.Converter<java.lang.String,?> preprocessor)
           
 

Methods in org.databene.platform.xls with parameters of type Entity
 void XLSEntityExporter.startConsuming(Entity entity)
           
 

Uses of Entity in org.databene.platform.xml
 

Methods in org.databene.platform.xml with parameters of type Entity
 void XMLEntityExporter.finishConsuming(Entity entity)
           
 void XMLEntityExporter.startConsuming(Entity entity)
           
 



Copyright © 2011. All Rights Reserved.