Uses of Interface
to.etc.domui.converter.IConverter

Packages that use IConverter
to.etc.domui.component.input   
to.etc.domui.component.meta   
to.etc.domui.component.meta.impl   
to.etc.domui.component.misc   
to.etc.domui.component.tbl   
to.etc.domui.converter   
to.etc.domui.dom.html   
to.etc.domui.util   
 

Uses of IConverter in to.etc.domui.component.input
 

Methods in to.etc.domui.component.input that return IConverter
 IConverter<T> Text.getConverter()
          See IConvertable.getConverter().
 

Methods in to.etc.domui.component.input with parameters of type IConverter
 void Text.setConverter(IConverter<T> converter)
          See IConvertable.setConverter(IConverter).
 

Uses of IConverter in to.etc.domui.component.meta
 

Methods in to.etc.domui.component.meta that return IConverter
 IConverter<T> PropertyMetaModel.getConverter()
          Returns the user-specified converter to use when converting this property's value to and from string.
 

Uses of IConverter in to.etc.domui.component.meta.impl
 

Methods in to.etc.domui.component.meta.impl with type parameters of type IConverter
<X,TT extends IConverter<X>>
java.lang.String
DisplayPropertyMetaModel.getAsString(java.lang.Object root)
          Returns the attribute as a string value.
 

Methods in to.etc.domui.component.meta.impl that return IConverter
 IConverter<?> ExpandedDisplayProperty.getBestConverter()
           
 IConverter<T> PathPropertyMetaModel.getConverter()
           
 IConverter<T> BasicPropertyMetaModel.getConverter()
           
 IConverter<?> DisplayPropertyMetaModel.getConverter()
           
 IConverter<T> ExpandedDisplayProperty.getConverter()
           
 IConverter<T> PropertyMetaModelWrapper.getConverter()
           
 

Methods in to.etc.domui.component.meta.impl with parameters of type IConverter
 void DisplayPropertyMetaModel.setConverter(IConverter<?> converter)
           
 void BasicPropertyMetaModel.setConverter(IConverter<T> converter)
           
 

Uses of IConverter in to.etc.domui.component.misc
 

Methods in to.etc.domui.component.misc that return IConverter
 IConverter<T> DisplayValue.getConverter()
          See IConvertable.getConverter().
 

Methods in to.etc.domui.component.misc with parameters of type IConverter
 void DisplayValue.setConverter(IConverter<T> converter)
          See IConvertable.setConverter(IConverter).
 

Uses of IConverter in to.etc.domui.component.tbl
 

Methods in to.etc.domui.component.tbl with parameters of type IConverter
 void SimpleColumnDef.setPresentationConverter(IConverter<?> valueConverter)
           
 

Uses of IConverter in to.etc.domui.converter
 

Classes in to.etc.domui.converter that implement IConverter
 class BooleanConverter
           
 class DateConverter
           
 class DateTimeConverter
           
 class DefaultConverter
          The converter of last resort, accepting anything.
 class DomainListConverter
          Converts strings for properties whose domain is a value list (enum, boolean), using the metadata provided for that property.
 class DoubleConverter
          Converts a Double value to a string and v.v., the double is treated as a real number.
 class DummyConverter
           
 class EnumConverter<E extends Enum<E>>
          This generic converter for enums should be used only as convertObjectToString renderer.
 class IntSizeConverter
          Converter to convert a computer "size" to a size in bytes, KB, MB, GB etc.
 class LongSizeConverter
          Converter to convert a computer "size" to a size in bytes, KB, MB, GB etc.
 class MoneyBigDecimalFullConverter
           
 class MoneyBigDecimalNoSign
           
 class MoneyBigDecimalNumeric
           
 class MoneyBigDecimalTruncatedWithSign
           
 class MoneyDoubleFullConverter
          This converts a Double containing a monetary amount to a full representation including thousands separator and valuta indicator.
 class MoneyDoubleNoSign
          Converter for NumericPresentation.MONEY_NO_SYMBOL.
 class MoneyDoubleNumeric
          Converter for NumericPresentation.MONEY_NUMERIC.
 class MoneyDoubleTruncatedWithSign
          Converter converting to a full money representation, including currency sign, thousands separators; this removes any zero fraction so 1000.00 is rendered like E 1,000
 class MsDurationConverter
           
 class NumberConverter<T extends Number>
          Parameterizable converter for numbers.
 class PercentageDoubleConverter
          This converts a Double containing a percentage amount to a full representation including percentage sign.
 class SecondDurationConverter
           
 class TimeOnlyConverter
           
 

Methods in to.etc.domui.converter with type parameters of type IConverter
static
<X,T extends IConverter<X>>
X
ConverterRegistry.convertStringToValue(java.lang.Class<T> clz, java.util.Locale loc, java.lang.String in)
          Convert a String value to some object, using the specified converter.
static
<X,T extends IConverter<X>>
X
ConverterRegistry.convertStringToValue(java.lang.Class<T> clz, java.lang.String in)
          Convert a String value to some object, using the specified converter.
static
<X,T extends IConverter<X>>
java.lang.String
ConverterRegistry.convertValueToString(java.lang.Class<T> clz, java.util.Locale loc, X in)
          Convert some object to a String value, using the specified converter.
static
<X,T extends IConverter<X>>
java.lang.String
ConverterRegistry.convertValueToString(java.lang.Class<T> clz, X in)
          Convert some object to a String value, using the specified converter.
<X,T extends IConverter<X>>
T
BooleanConverterFactory.createConverter(java.lang.Class<X> clz, PropertyMetaModel<X> pmm)
           
<X,T extends IConverter<X>>
T
EnumFactory.createConverter(java.lang.Class<X> clz, PropertyMetaModel<X> pmm)
           
<X,T extends IConverter<X>>
T
DefaultConverterFactory.createConverter(java.lang.Class<X> clz, PropertyMetaModel<X> pmm)
           
<X,T extends IConverter<X>>
T
MoneyConverterFactory.createConverter(java.lang.Class<X> clz, PropertyMetaModel<X> pmm)
          Create the appropriate converter.
<X,T extends IConverter<X>>
T
IConverterFactory.createConverter(java.lang.Class<X> clz, PropertyMetaModel<X> pmm)
          Return the converter which properly converts the specified class and meta model.
<X,T extends IConverter<X>>
T
DoubleFactory.createConverter(java.lang.Class<X> clz, PropertyMetaModel<X> pmm)
           
<X,T extends IConverter<X>>
T
DomainListConverterFactory.createConverter(java.lang.Class<X> clz, PropertyMetaModel<X> pmm)
           
<X,T extends IConverter<X>>
T
DateConverterFactory.createConverter(java.lang.Class<X> clz, PropertyMetaModel<X> pmm)
           
static
<X,T extends IConverter<X>>
T
ConverterRegistry.getConverterInstance(java.lang.Class<T> clz)
          Get an instance of a given converter type.
 

Methods in to.etc.domui.converter that return IConverter
static IConverter<java.math.BigDecimal> MoneyConverterFactory.createBigDecimalMoneyConverters(NumericPresentation np)
          Returns one of the converter classes for converting a double into one of the numericPresentations.
static IConverter<java.lang.Double> MoneyConverterFactory.createDoubleMoneyConverters(NumericPresentation np)
          Returns one of the converter classes for converting a double into one of the numericPresentations.
static
<T extends java.lang.Number>
IConverter<T>
NumericUtil.createNumberConverter(java.lang.Class<T> type, NumericPresentation np, int scale)
           
static
<X> IConverter<X>
ConverterRegistry.findBestConverter(PropertyMetaModel<X> pmm)
          Obtain the very best presentation converter we can find for the specified property.
static
<X> IConverter<X>
ConverterRegistry.findConverter(java.lang.Class<X> clz)
          Finds the best converter to convert a value of the specified type to a string.
static
<X> IConverter<X>
ConverterRegistry.findConverter(java.lang.Class<X> clz, PropertyMetaModel<X> pmm)
          Finds the best converter to convert a value of the specified type (and the optionally specified metadata) to a string.
static
<X> IConverter<X>
ConverterRegistry.findURLConverter(java.lang.Class<X> totype)
          Find an URL converter to convert to the given type.
 IConverter<T> IConvertable.getConverter()
          Returns the class of the converter.
static
<X> IConverter<X>
ConverterRegistry.getConverter(java.lang.Class<X> clz, PropertyMetaModel<X> pmm)
          Gets the best converter to convert a value of the specified type (and the optionally specified metadata) to a string.
 

Methods in to.etc.domui.converter with parameters of type IConverter
static
<X> void
ConverterRegistry.registerURLConverter(java.lang.Class<X> totype, IConverter<X> c)
          Register an URL converter for the specified class.
 void IConvertable.setConverter(IConverter<T> converter)
          Sets the Converter to use to convert the value to a string and vice versa.
 

Uses of IConverter in to.etc.domui.dom.html
 

Methods in to.etc.domui.dom.html with type parameters of type IConverter
<T,C extends IConverter<T>>
void
NodeContainer.setValue(java.lang.Class<C> conv, T value)
          Put a converted value in this cell's text.
 

Uses of IConverter in to.etc.domui.util
 

Classes in to.etc.domui.util that implement IConverter
 class PropertyValueConverter<T>
          This converts an object to a string by creating a string from a list of property values off that object.