Uses of Class
org.databene.commons.converter.AbstractConverter

Packages that use AbstractConverter
org.databene.benerator.composite   
org.databene.benerator.engine   
org.databene.benerator.engine.parser   
org.databene.benerator.parser   
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.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.domain.person databene domain for Person data. 
org.databene.model.data   
org.databene.platform.array   
org.databene.platform.db platform adapter for databases. 
org.databene.platform.java platform adapter for JavaBeans. 
org.databene.platform.map   
org.databene.script Defines an abstraction of scripts and tamplates. 
org.databene.text Text processing 
 

Uses of AbstractConverter in org.databene.benerator.composite
 

Subclasses of AbstractConverter in org.databene.benerator.composite
 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 AbstractConverter in org.databene.benerator.engine
 

Subclasses of AbstractConverter in org.databene.benerator.engine
 class XMLNameNormalizer
          Normalizes XML-valid names to Java-valid camel-case names, e.g. default-script -> defaultScript.
 

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

Subclasses of AbstractConverter in org.databene.benerator.engine.parser
 class String2DistributionConverter
          Parses a string and interprets it as a Distribution spec, supporting the predefined sequences, like 'random' and 'cumulated'.
 

Uses of AbstractConverter in org.databene.benerator.parser
 

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

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

Subclasses of AbstractConverter in org.databene.benerator.primitive.number
 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 AbstractConverter in org.databene.commons.bean
 

Subclasses of AbstractConverter in org.databene.commons.bean
 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 AbstractConverter in org.databene.commons.converter
 

Subclasses of AbstractConverter in org.databene.commons.converter
 class AccessingConverter<C,V>
          Wraps an Accessor into a Converter interface.
 class ArrayElementExtractor<E>
          Retrieves the value at a given array index from an array.
 class Base64ToByteArrayConverter
          Converts base64-encoded Strings to byte arrays.
 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 ConstructorInvoker<S,T>
          Converter implementation which invokes a constructor of the target class with the source object as argument.
 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 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 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 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 SubArrayExtractor
          Extracts a sub array from another array.
 class SubstringExtractor
          Extracts a sub string from a string.
 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 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.
 

Uses of AbstractConverter in org.databene.domain.person
 

Subclasses of AbstractConverter in org.databene.domain.person
 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 AbstractConverter in org.databene.model.data
 

Subclasses of AbstractConverter in org.databene.model.data
 class ComponentNameMapper
          Converts the names of Entity components.
 

Uses of AbstractConverter in org.databene.platform.array
 

Subclasses of AbstractConverter in org.databene.platform.array
 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 AbstractConverter in org.databene.platform.db
 

Subclasses of AbstractConverter in org.databene.platform.db
 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 AbstractConverter in org.databene.platform.java
 

Subclasses of AbstractConverter in org.databene.platform.java
 class Bean2EntityConverter
          Converts a Bean to an Entity.
 class Entity2BeanConverter<T>
          Converts an Entity to a JavaBean.
 

Uses of AbstractConverter in org.databene.platform.map
 

Subclasses of AbstractConverter in org.databene.platform.map
 class Entity2MapConverter
          Converts an Entity to a Map.
 class Map2EntityConverter
          Converts a Map to an Entity.
 

Uses of AbstractConverter in org.databene.script
 

Subclasses of AbstractConverter in org.databene.script
 class ScriptConverter
          Converter that uses a Script for String conversion.
 

Uses of AbstractConverter in org.databene.text
 

Subclasses of AbstractConverter in org.databene.text
 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.