Uses of Interface
org.databene.commons.Converter

Packages that use Converter
org.databene.benerator.composite   
org.databene.benerator.csv Provides String generators that parse CSV sources. 
org.databene.benerator.engine   
org.databene.benerator.engine.parser   
org.databene.benerator.factory   
org.databene.benerator.nullable   
org.databene.benerator.parser   
org.databene.benerator.primitive Implements Generators for simple Java types. 
org.databene.benerator.primitive.number Defines a small framework for generating numbers of all built-in Java number types (byte, short, int, long, BigInteger, float, double, BigDecimal) resulting from a sequence or being distributed according a distribution function. 
org.databene.benerator.sample Provides Generators that are based on collections of samples. 
org.databene.benerator.wrapper Defines generators that wrap other generators and forward or convert their products 
org.databene.commons Provides (mostly JDK-related) utility classes. 
org.databene.commons.bean Provides model (org.databene.model) implementations for JavaBeans. 
org.databene.commons.converter Provides implementation and framework for org.databene.model.Converter 
org.databene.commons.iterator Provides implementation and framework for java.util.Iterator 
org.databene.commons.mutator Provides implementation and framework for org.databene.model.Mutator 
org.databene.commons.operation   
org.databene.commons.xml   
org.databene.document.csv Implements CSV file access. 
org.databene.document.xls   
org.databene.domain.person databene domain for Person data. 
org.databene.model.data   
org.databene.platform.array   
org.databene.platform.csv   
org.databene.platform.db platform adapter for databases. 
org.databene.platform.flat   
org.databene.platform.java platform adapter for JavaBeans. 
org.databene.platform.map   
org.databene.platform.xls   
org.databene.script Defines an abstraction of scripts and tamplates. 
org.databene.text Text processing 
 

Uses of Converter in org.databene.benerator.composite
 

Classes in org.databene.benerator.composite that implement Converter
 class ArrayElementTypeConverter
          Converts an array's elements to the types defined in a related ArrayTypeDescriptor.
 class ComponentTypeConverter
          Converts an Entity's components to the type specified by the EntityDescriptor.
 

Uses of Converter in org.databene.benerator.csv
 

Methods in org.databene.benerator.csv with parameters of type Converter
static
<T> java.util.List<WeightedSample<T>>
CSVGeneratorUtil.parseDatasetFiles(java.lang.String datasetName, char separator, java.lang.String nesting, java.lang.String filenamePattern, java.lang.String encoding, Converter<java.lang.String,T> converter)
           
static
<T> java.util.List<WeightedSample<T>>
CSVGeneratorUtil.parseFile(java.lang.String filename, char separator, java.lang.String encoding, Converter<java.lang.String,T> converter)
           
static
<T> java.util.List<WeightedSample<T>>
CSVGeneratorUtil.parseFile(java.lang.String filename, char separator, java.lang.String encoding, Converter<java.lang.String,T> converter, java.util.List<WeightedSample<T>> samples)
           
 

Constructors in org.databene.benerator.csv with parameters of type Converter
LocalCSVGenerator(java.lang.String baseName, java.util.Locale locale, java.lang.String suffix, java.lang.String encoding, Converter<java.lang.String,E> converter)
           
SequencedDatasetCSVGenerator(java.lang.String filenamePattern, char separator, java.lang.String datasetName, java.lang.String nesting, Distribution distribution, java.lang.String encoding, Converter<java.lang.String,E> converter)
           
WeightedDatasetCSVGenerator(java.lang.String filenamePattern, char separator, java.lang.String datasetName, java.lang.String nesting, java.lang.String encoding, Converter<java.lang.String,E> converter)
           
 

Uses of Converter in org.databene.benerator.engine
 

Classes in org.databene.benerator.engine that implement Converter
 class XMLNameNormalizer
          Normalizes XML-valid names to Java-valid camel-case names, e.g. default-script -> defaultScript.
 

Uses of Converter in org.databene.benerator.engine.parser
 

Classes in org.databene.benerator.engine.parser that implement Converter
 class String2DistributionConverter
          Parses a string and interprets it as a Distribution spec, supporting the predefined sequences, like 'random' and 'cumulated'.
 

Uses of Converter in org.databene.benerator.factory
 

Methods in org.databene.benerator.factory that return Converter
static Converter<?,?> TypeGeneratorFactory.createConverter(SimpleTypeDescriptor descriptor, java.lang.Class<?> sourceType)
           
static Converter<java.lang.String,java.lang.String> DescriptorUtil.createScriptConverter(BeneratorContext context)
           
static Converter DescriptorUtil.getConverter(TypeDescriptor descriptor, BeneratorContext context)
           
 

Methods in org.databene.benerator.factory with parameters of type Converter
static
<S,T> Generator<T>
GeneratorFactory.getConvertingGenerator(Generator<S> source, Converter<S,T> converter)
          Creates a generator that accepts products from a source generator and converts them to target products by the converter
static
<T> Generator<T>
GeneratorFactory.getSampleGenerator(java.lang.String uri, java.lang.String encoding, Converter<java.lang.String,T> converter)
          Creates a generator that reads cell Strings from a CSV file and converts them into objects by a converter
 

Uses of Converter in org.databene.benerator.nullable
 

Constructors in org.databene.benerator.nullable with parameters of type Converter
ConvertingNullableGeneratorProxy(NullableGenerator<S> realGenerator, Converter<S,P> converter)
           
 

Uses of Converter in org.databene.benerator.parser
 

Classes in org.databene.benerator.parser that implement Converter
 class DefaultEntryConverter
          Converts Map entries by first applying a preprocessor to the value, then (if possible) converting the result to a number or boolean.
 

Constructors in org.databene.benerator.parser with parameters of type Converter
DefaultEntryConverter(Converter<java.lang.String,java.lang.Object> preprocessor, BeneratorContext context, boolean putEntriesToContext)
           
 

Uses of Converter in org.databene.benerator.primitive
 

Classes in org.databene.benerator.primitive that implement Converter
 class ValueMapper
          Converter implementation that maps input values in a 'Map' style.
 

Uses of Converter in org.databene.benerator.primitive.number
 

Classes in org.databene.benerator.primitive.number that implement Converter
 class FloatingPointQuantizer<E extends Number>
          Quantizes floating point numbers (Double or Float) to be min plus an integral multiple of precision.
 class IntegralQuantizer<E extends Number>
          Quantizes integer numbers (Byte, Short, Integer, Long) to be min plus an integral multiple of precision.
 

Uses of Converter in org.databene.benerator.sample
 

Constructors in org.databene.benerator.sample with parameters of type Converter
SequencedCSVSampleGenerator(Converter<java.lang.String,E> converter)
           
SequencedCSVSampleGenerator(java.lang.String uri, Converter<java.lang.String,E> converter)
           
WeightedCSVSampleGenerator(java.lang.String uri, java.lang.String encoding, Converter<java.lang.String,E> converter)
           
 

Uses of Converter in org.databene.benerator.wrapper
 

Fields in org.databene.benerator.wrapper declared as Converter
protected  Converter<S,T> ConvertingGenerator.converter
          The converter to apply to the source's products
 

Methods in org.databene.benerator.wrapper with type parameters of type Converter
protected
<T extends Converter<U,V>,U,V>
T
CompositeGenerator.registerComponent(T component)
           
 

Methods in org.databene.benerator.wrapper that return Converter
 Converter<S,T> ConvertingGenerator.getConverter()
           
 

Methods in org.databene.benerator.wrapper with parameters of type Converter
 void ConvertingGenerator.setConverter(Converter<S,T> converter)
           
 

Constructors in org.databene.benerator.wrapper with parameters of type Converter
ConvertingGenerator(Generator<S> source, Converter<S,T> converter)
          Initializes all attributes
 

Uses of Converter in org.databene.commons
 

Methods in org.databene.commons with parameters of type Converter
static
<T> java.lang.String
ArrayFormat.format(Converter<java.lang.Object,java.lang.String> formatter, java.lang.String separator, T... items)
           
static
<T> java.lang.String
ArrayFormat.formatPart(Converter<java.lang.Object,java.lang.String> formatter, java.lang.String separator, int offset, int length, T... items)
           
static
<T,E extends java.lang.Appendable>
E
ArrayFormat.formatPart(E toAppendTo, Converter<java.lang.Object,java.lang.String> formatter, java.lang.String separator, int offset, int length, T... items)
           
static
<V> java.util.Map<java.lang.String,V>
IOUtil.readProperties(java.lang.String filename, Converter<java.util.Map.Entry,java.util.Map.Entry> converter)
           
static
<V> java.util.Map<java.lang.String,V>
IOUtil.readProperties(java.lang.String filename, Converter<java.util.Map.Entry,java.util.Map.Entry> converter, java.lang.String encoding)
           
 

Constructors in org.databene.commons with parameters of type Converter
ArrayFormat(Converter<java.lang.Object,java.lang.String> itemFormat)
           
ArrayFormat(Converter<java.lang.Object,java.lang.String> itemFormatter, java.lang.String separator)
           
 

Uses of Converter in org.databene.commons.bean
 

Classes in org.databene.commons.bean that implement Converter
 class ArrayPropertyExtractor<E>
          Extracts property values from an array of JavaBeans in a way that processing n beans results in an array of n elements with the property values.
 class BeanToPropertyArrayConverter<E>
          Converter implementation that extracts all property values of a JavaBean to a Properties object.
 class PropertyAccessConverter
          Wraps an Accessor with a Converter interface implementation.
 

Uses of Converter in org.databene.commons.converter
 

Classes in org.databene.commons.converter that implement Converter
 class AbstractConverter<S,T>
          Abstract implementation of the Converter interface, providing management of source and target type.
 class AccessingConverter<C,V>
          Wraps an Accessor into a Converter interface.
 class AnyConverter<E>
          Converts any source type to any target type.
 class ArrayConverter<S,T>
          Converts arrays from one component type to arrays of another component type.
 class ArrayElementExtractor<E>
          Retrieves the value at a given array index from an array.
 class ArrayTypeConverter<T>
          Converts arrays from one component type to arrays of another component type.
 class Base64ToByteArrayConverter
          Converts base64-encoded Strings to byte arrays.
 class Boolean2NumberConverter<T extends Number>
          Converting Boolean values to Numbers: false to 0, true to 1.
 class BooleanMapper<T>
          Maps true, false and null to configured aliases, e.g. '1', '0' and '?'.
 class ByteArray2StringConverter
          Converts byte arrays to Strings based on a character encoding, e.g.
 class ByteArrayToBase64Converter
          Converts byte arrays to base64 strings and vice versa.
 class Calendar2DateConverter
          Converts Calendar objects to Dates.
 class CaseConverter
          Converts a String's characters to upper or lower case.
 class CharArray2StringConverter
          Combines the characters of a character array to a String.
 class Class2StringConverter
          Converts a Class object to its fully qualified class name.
 class CommaSeparatedListConverter<T>
          Converts a String with a comma-separated list to an array.
 class ConstructorInvoker<S,T>
          Converter implementation which invokes a constructor of the target class with the source object as argument.
 class ConverterChain<S,T>
          Aggregates other (sub) converters and implements conversion by subsequent invocation of the sub generators, each converting the result of the preceding converter.
 class ConverterProxy<S,T>
          Parent class for Converters that act as a proxy to another converter instance.
 class Date2CalendarConverter
          Converts Date into Calendar Objects and back.
 class Date2DurationConverter
          Interprets a Date as duration specification, e.g. '0000-00-00T00:00:00.001' as one millisecond, '0001-00-00T00:00:00.000' as one year.
 class Date2LongConverter
          Converts a Date into the number of milliseconds since 1970-01-01 in a certain time zone and back.
 class Date2TimestampConverter
          Converts Date to Timestamp Objects.
 class DateString2DurationConverter
          Converts a date in String format to a duration in milliseconds.
 class Enum2StringConverter<E extends Enum<E>>
          Converts an enum value to its String representation.
 class FormatBasedConverter<S,T>
          Parent class for Converters that use a Format instance for parsing Strings or formatting other objects.
 class FormatFormatConverter<S>
          Converts an object to a String by using a java.lang.Format object's format() method.
 class LiteralParser
          Parses the literal representation a simple type into an appropriate Java object of type Boolean, Integer, Long, Double, Date or String.
 class Locale2StringConverter
          Converts a Locale to its String representation.
 class Long2DateConverter
          Interprets Long values as milliseconds since 1970-01-01 and converts them to Date objects.
 class MessageConverter
          Renders a single object or an array of objects into a String, similar to the java.text.MessageFormat.
 class NoOpConverter<E>
          Returns the argument to be converted.
 class NullSafeConverterProxy<S,T>
          Wraps another Converter and adds the feature of converting null values to a predefined value.
 class Number2BooleanConverter<S extends Number>
          Converts Numbers to Booleans, interpreting zero as false, any other value as true.
 class Number2IntegerConverter
          Converts Number objects to Integers.
 class Number2StringConverter
          Formats a number as a String.
 class NumberFormatBasedConverter<S,T>
          Holds a NumberFormat and exhibits properties for its configuration.
 class NumberFormatter
          Formats Number objects as String using NumberFormat.
 class NumberParser
          Converts Strings to Numbers using a DecimalFormat.
 class NumberToNumberConverter<S extends Number,T extends Number>
          Converts Number objects of one type to another Number type.
 class ParseFormatConverter<T>
          Converts a String to an object by using a java.lang.Format object's format() method.
 class PrintfConverter
          Converter implementation that uses a Formatter to render argument objects in C-like printf format.
 class PropertyExtractor<B,P>
          Converter implementation that reads a property form a JavaBean.
 class PropertyResourceBundleConverter
          Converts key strings to localized texts by using a ResourceBundle.
 class RegexReplacer
          Converts strings using a regular expression.
 class SimpleConverter<S,T>
          Parent class for Converters that are neither parallelizable nor thead-safe.
 class SourceClassMethodInvoker<S,T>
          Converter implementation which invokes a no-arg method on the source object.
 class SqlDate2UtilDateConverter
          Converts Date objects to Date objects.
 class StaticTargetClassMethodInvoker<S,T>
          Converter implementation which invokes a static method of an arbitrary class with the object to be converted as argument.
 class String2BooleanConverter
          Parses a String as a Boolean.
 class String2ByteArrayConverter
          Converts strings to byte arrays based on a character encoding, e.g.
 class String2CharConverter
          Converts Strings of length 1 to Characters, Strings of length 0 to null.
 class String2ClassConverter
          Interprets a String as class name and returns the corresponding class object.
 class String2ConverterConverter
          Converts Strings to Converters and vice versa.
 class String2DateConverter<E extends Date>
          Converts Strings of standard date(time) format (yyyy-MM-dd[Thh:mm[:ss[.SSS]]]) to dates.
 class String2DateFormatConverter
          Parses a String as DateFormat.
 class String2EnumConverter<E extends Enum>
          Instantiates enum instances by their name.
 class String2GregorianCalendarConverter
          Parses a String as a Calendar.
 class String2LocaleConverter
          Instantiates Locales by their code, e.g. de_DE.
 class String2NumberConverter<T extends Number>
          Converts Strings to Numbers.
 class String2NumberFormatConverter
          Parses a String as NumberFormat.
 class String2PatternConverter
          Converts a String to a Pattern.
 class String2TimeConverter
          Parses a String as a time value.
 class String2TimestampConverter
          Parses Strings converting them to Timestamps.
 class SubArrayExtractor
          Extracts a sub array from another array.
 class SubstringExtractor
          Extracts a sub string from a string.
 class SynchronizedConverterProxy<S,T>
          Proxy class for (unsafe) Converters that synchronizes calls to the wrapped converter instance.
 class ThreadSafeConverter<S,T>
          Parent class for Converter implementations which support all modes of threaded usage.
 class Time2StringConverter
          Converts Time objects to Strings.
 class Timestamp2DateConverter
          Converts Timestamps to Dates.
 class TimestampFormatter
          Formats a Timestamp as String.
 class ToArrayConverter
          Converts arrays and collections to arrays and other object to an array of size 1.
 class ToCollectionConverter<C extends Collection>
          Converts arrays and collections to collections of same content, everything else is converted to a collection of size 1.
 class ToHashCodeConverter
          Converts an arbitrary object to a hash code using the method hashCode().
 class ToLowerCaseConverter
          Converts Strings to lowercase.
 class ToStringConverter
          Converts an object to a String by using its toString() method.
 class ToStringMethodInvoker<E>
          Converter implementation which invokes the toString() method on the source object.
 class ToUpperCaseConverter
          Converts Strings to upper case.
 class UniqueStringConverter
          Assures uniqueness for all processed Strings by appending unique numbers to recurring instances.
 class URLDecodeConverter
          Decodes a String from the application/x-www-form-urlencoded MIME format.
 class URLEncodeConverter
          Converts Strings to their URL-encoded representation.
 class UtilDate2SqlDateConverter
          Converts a java.util.Date to a java.sql.Date.
 

Fields in org.databene.commons.converter declared as Converter
protected  Converter<S,T>[] MultiConverterWrapper.components
           
protected  Converter<S,T> ConvertingIterable.converter
           
protected  Converter<S,T> NullSafeConverterProxy.realConverter
           
protected  Converter<S,T> ConverterWrapper.realConverter
           
 

Methods in org.databene.commons.converter that return Converter
static
<SS,TT> Converter<SS,TT>
ConverterManager.cloneIfSupported(Converter<SS,TT> prototype)
           
static
<SS,TT> Converter<SS,TT>[]
ConverterManager.cloneIfSupported(Converter<SS,TT>[] prototypes)
           
 Converter String2ConverterConverter.convert(java.lang.String sourceValue)
           
<S,T> Converter<S,T>
ConverterManager.createConverter(java.lang.Class<S> sourceType, java.lang.Class<T> targetType)
           
 Converter<S,T>[] MultiConverterWrapper.getComponents()
           
 

Methods in org.databene.commons.converter with parameters of type Converter
 void MultiConverterWrapper.addComponent(Converter<S,T> converter)
           
static
<SS,TT> Converter<SS,TT>
ConverterManager.cloneIfSupported(Converter<SS,TT> prototype)
           
static
<SS,TT> Converter<SS,TT>[]
ConverterManager.cloneIfSupported(Converter<SS,TT>[] prototypes)
           
static
<S,T> T[]
ArrayConverter.convert(S[] sourceValues, Converter<S,T> converter, java.lang.Class<T> componentType)
           
static
<S,T> java.lang.Object
ConverterManager.convertAll(S[] input, Converter<S,T> converter, java.lang.Class componentType)
           
 void MultiConverterWrapper.setComponents(Converter<S,T>[] converters)
           
 

Method parameters in org.databene.commons.converter with type arguments of type Converter
 void ConverterManager.registerConverterClass(java.lang.Class<? extends Converter> converterClass)
           
 

Constructors in org.databene.commons.converter with parameters of type Converter
ArrayConverter(java.lang.Class<S> sourceComponentType, java.lang.Class<T> targetComponentType, Converter<S,T>... converters)
           
ConverterChain(Converter... components)
           
ConverterProxy(Converter<S,T> realConverter)
           
ConverterWrapper(Converter<S,T> realConverter)
           
ConvertingIterable(java.lang.Iterable<S> iterable, Converter<S,T> converter)
           
MultiConverterWrapper(Converter<S,T>[] components)
           
NullSafeConverterProxy(Converter<S,T> realConverter, T nullResult)
           
SynchronizedConverterProxy(Converter<S,T> realConverter)
           
 

Constructor parameters in org.databene.commons.converter with type arguments of type Converter
ConverterTest(java.lang.Class<? extends Converter> converterClass)
           
 

Uses of Converter in org.databene.commons.iterator
 

Fields in org.databene.commons.iterator declared as Converter
protected  Converter<S,T> ConvertingIterator.converter
           
 

Constructors in org.databene.commons.iterator with parameters of type Converter
ConvertingIterator(java.util.Iterator<S> source, Converter<S,T> converter)
           
 

Uses of Converter in org.databene.commons.mutator
 

Constructors in org.databene.commons.mutator with parameters of type Converter
ConvertingMutator(Mutator realMutator, Converter converter)
           
 

Uses of Converter in org.databene.commons.operation
 

Methods in org.databene.commons.operation with parameters of type Converter
static
<T> ComparableWrapper<T>[]
ComparableWrapper.wrapAll(T[] realObjects, Converter<T,?> comparableBuilder)
           
 

Uses of Converter in org.databene.commons.xml
 

Methods in org.databene.commons.xml with parameters of type Converter
static void XMLUtil.mapAttributesToProperties(org.w3c.dom.Element element, java.lang.Object bean, boolean unescape, Converter<java.lang.String,java.lang.String> nameNormalizer)
           
 

Uses of Converter in org.databene.document.csv
 

Methods in org.databene.document.csv with parameters of type Converter
static
<T> java.util.List<T>
ConvertingCSVParser.parse(java.lang.String uri, Converter<java.lang.String[],T> rowConverter)
           
static
<T> java.util.List<T>
ConvertingCSVParser.parse(java.lang.String uri, Converter<java.lang.String[],T> rowConverter, java.util.List<T> list)
           
 

Constructors in org.databene.document.csv with parameters of type Converter
ConvertingCSVParser(java.lang.String uri, Converter<java.lang.String[],E> rowConverter)
           
 

Uses of Converter in org.databene.document.xls
 

Methods in org.databene.document.xls with parameters of type Converter
static java.lang.Object HSSFUtil.resolveCellValue(org.apache.poi.ss.usermodel.Cell cell, Converter<java.lang.String,?> preprocessor)
           
 

Constructors in org.databene.document.xls with parameters of type Converter
XLSLineIterator(org.apache.poi.hssf.usermodel.HSSFSheet sheet, Converter<java.lang.String,?> preprocessor)
           
XLSLineIterator(java.lang.String uri, int sheetIndex, Converter<java.lang.String,?> preprocessor)
           
 

Uses of Converter in org.databene.domain.person
 

Classes in org.databene.domain.person that implement Converter
 class FemaleFamilyNameConverter
          Can convert the male form of a family name to the female form by a suffix mapping.
 class GenderConverter
          Converts a Gender enumeration value to a configurable String.
 class PersonFormatter
          Formats Person objects.
 

Uses of Converter in org.databene.model.data
 

Classes in org.databene.model.data that implement Converter
 class ComponentNameMapper
          Converts the names of Entity components.
 

Uses of Converter in org.databene.platform.array
 

Classes in org.databene.platform.array that implement Converter
 class Array2EntityConverter
          Converts an array of feature values to an entity.
 class Entity2ArrayConverter
          Converts an Entity's features values to an array of objects.
 

Uses of Converter in org.databene.platform.csv
 

Methods in org.databene.platform.csv with parameters of type Converter
static java.util.List<Entity> CSVEntityIterator.parseAll(java.lang.String uri, char separator, java.lang.String encoding, ComplexTypeDescriptor descriptor, Converter<java.lang.String,java.lang.String> preprocessor, Patterns patterns)
           
 

Constructors in org.databene.platform.csv with parameters of type Converter
CSVEntityIterator(java.lang.String uri, ComplexTypeDescriptor descriptor, Converter<java.lang.String,?> preprocessor, char separator, java.lang.String encoding)
           
CSVEntityIterator(java.lang.String uri, java.lang.String entityName, Converter<java.lang.String,?> preprocessor, char separator, java.lang.String encoding)
           
CSVEntitySource(java.lang.String uri, ComplexTypeDescriptor descriptor, Converter<java.lang.String,?> preprocessor, char separator, java.lang.String encoding)
           
CSVEntitySource(java.lang.String uri, java.lang.String entityName, Converter<java.lang.String,?> preprocessor, char separator, java.lang.String encoding)
           
CSVEntitySourceFactory(java.lang.String type, Converter<java.lang.String,?> converter, char separator, java.lang.String encoding)
           
 

Uses of Converter in org.databene.platform.db
 

Classes in org.databene.platform.db that implement Converter
 class ResultSetConverter<E>
          Converts a ResultSet's current cursor position to an array of objects or, if it is of size 1, to a single object.
 

Uses of Converter in org.databene.platform.flat
 

Fields in org.databene.platform.flat declared as Converter
protected  Converter<java.lang.String[],Entity> FlatFileEntitySource.converter
           
 

Constructors in org.databene.platform.flat with parameters of type Converter
FlatFileEntitySource(java.lang.String uri, ComplexTypeDescriptor entityDescriptor, Converter<java.lang.String,java.lang.String> preprocessor, java.lang.String encoding, java.lang.String lineFilter, FlatFileColumnDescriptor... descriptors)
           
 

Uses of Converter in org.databene.platform.java
 

Classes in org.databene.platform.java that implement Converter
 class Bean2EntityConverter
          Converts a Bean to an Entity.
 class Entity2BeanConverter<T>
          Converts an Entity to a JavaBean.
 

Uses of Converter in org.databene.platform.map
 

Classes in org.databene.platform.map that implement Converter
 class Entity2MapConverter
          Converts an Entity to a Map.
 class Map2EntityConverter
          Converts a Map to an Entity.
 

Uses of Converter in org.databene.platform.xls
 

Methods in org.databene.platform.xls with parameters of type Converter
static java.util.List<Entity> XLSEntityIterator.parseAll(java.lang.String uri, Converter<java.lang.String,?> preprocessor)
           
 

Constructors in org.databene.platform.xls with parameters of type Converter
XLSEntityIterator(java.lang.String uri, Converter<java.lang.String,?> preprocessor)
           
XLSEntitySource(java.lang.String uri, Converter<java.lang.String,?> preprocessor)
           
XLSEntitySourceFactory(java.lang.String type, Converter<java.lang.String,?> scriptConverter)
           
 

Uses of Converter in org.databene.script
 

Classes in org.databene.script that implement Converter
 class ScriptConverter
          Converter that uses a Script for String conversion.
 

Uses of Converter in org.databene.text
 

Classes in org.databene.text that implement Converter
 class DelocalizingConverter
          Delocalizes a String bye replacing local characters by international latin characters.
 class NameNormalizer
          Normalizes names in capitalization and spacing.
 class NormalizeSpaceConverter
          Converter that normalizes white space on strings.
 class SplitStringConverter
          Splits a String by a separator character

Created: 19.06.2007 07:33:03
 class ToHexConverter
          Converter that transforms an object into its hexadecimal representation.
 



Copyright © 2010. All Rights Reserved.