Uses of Interface
org.openxava.converters.IConverter

Packages that use IConverter
org.openxava.converters   
org.openxava.converters.typeadapters   
org.openxava.mapping   
 

Uses of IConverter in org.openxava.converters
 

Classes in org.openxava.converters that implement IConverter
 class ArrayBytesBlobConverter
          A bytes array (byte []) that in db it's saved as Blob.
 class ArrayBytesPhotoConverter
          A bytes array (byte []) that it's stored in DB as a object of type org.openxava.util.Photo.
 class BigDecimalNumberConverter
          In Java java.math.BigDecimal and in database Number of any type.
 class BigIntegerNumberConverter
          In Java java.math.BigInteger and in database Number of any type.
 class Boolean01Converter
          In java boolean and in database Number that it can be 1 or 0.
 class BooleanSNConverter
          In java a boolean and in database String that can be 'S' or 'N'.
 class DateUtilSQLConverter
          In java a java.util.Date and in database a java.sql.Date.
 class IntegerBigDecimalConverter
          In java a int and in database a BigDecimal.
 class IntegerNumberConverter
          In java a int and in database a Number of any type.
 class IntegerStringConverter
          In java an int and in database a String.
 class LongBigDecimalConverter
          In java a long and in database a BigDecimal.
 class LongNumberConverter
          In java a long and in database a Number of any type.
 class NoConversionConverter
           
 class NotNullDateConverter
          It store dates, but never save null, instead save a 1/1/1 date.
 class NotNullStringConverter
           
 class StringArrayBytesConverter
          Supports Blob (and also other types for byte []) in as column type in DB.
 class StringBlobConverter
          In java a String a a Blog in database.
 class StringNotNullConverter
           
 class StringTimeConverter
          In java a String and in database a java.sql.Time.
 class TrimStringConverter
           
 class ValidValuesBase0Converter
          In java valid-values and in database a integer number whose first value is 0.
 class ValidValuesLetterConverter
          In java a valid-values and in database a letter corresponding to the position in the string that it's in property 'letters'.
 class ValidValuesStringConverter
          In java a valid-values and in database a string corresponding to the position that it's in property 'words'.
 

Methods in org.openxava.converters that return IConverter
static IConverter IntegerNumberConverter.getInstance()
           
static IConverter LongNumberConverter.getInstance()
           
 

Uses of IConverter in org.openxava.converters.typeadapters
 

Classes in org.openxava.converters.typeadapters that implement IConverter
 class HibernateTypeConverter
          Adapter for using Hibernate types as converters in OpenXava.
 class OrdinalEnumIntConverter
          For using Java 5 enums in tabs, specifically for converting filter data.
 class StringEnumIntConverter
          For using Java 5 enums in tabs, specifically for converting filter data.
 

Uses of IConverter in org.openxava.mapping
 

Methods in org.openxava.mapping that return IConverter
 IConverter PropertyMapping.getConverter()
           
 IConverter ReferenceMappingDetail.getConverter()
           
 IConverter ModelMapping.getConverter(java.lang.String modelProperty)
           
 IConverter ReferenceMapping.getConverterForReferencedModelProperty(java.lang.String property)