Uses of Class
to.etc.domui.component.meta.NumericPresentation

Packages that use NumericPresentation
to.etc.domui.component.meta   
to.etc.domui.component.meta.impl   
to.etc.domui.component.tbl   
to.etc.domui.converter   
 

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

Methods in to.etc.domui.component.meta that return NumericPresentation
 NumericPresentation PropertyMetaModel.getNumericPresentation()
          Used for numeric types, this returns how to present the number and defines the number's class, like a monetary amount.
static NumericPresentation NumericPresentation.valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static NumericPresentation[] NumericPresentation.values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 

Methods in to.etc.domui.component.meta with parameters of type NumericPresentation
static boolean NumericPresentation.isMonetary(NumericPresentation np)
           
 

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

Methods in to.etc.domui.component.meta.impl that return NumericPresentation
 NumericPresentation PathPropertyMetaModel.getNumericPresentation()
           
 NumericPresentation BasicPropertyMetaModel.getNumericPresentation()
           
 NumericPresentation ExpandedDisplayProperty.getNumericPresentation()
           
 NumericPresentation PropertyMetaModelWrapper.getNumericPresentation()
           
 

Methods in to.etc.domui.component.meta.impl with parameters of type NumericPresentation
 void BasicPropertyMetaModel.setNumericPresentation(NumericPresentation numericPresentation)
           
 

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

Methods in to.etc.domui.component.tbl that return NumericPresentation
 NumericPresentation SimpleColumnDef.getNumericPresentation()
           
 

Methods in to.etc.domui.component.tbl with parameters of type NumericPresentation
 void SimpleColumnDef.setNumericPresentation(NumericPresentation numericPresentation)
           
 

Uses of NumericPresentation in to.etc.domui.converter
 

Methods in to.etc.domui.converter with parameters of type NumericPresentation
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 java.lang.String NumericUtil.renderNumber(java.lang.Number v, NumericPresentation np, int scale)
           
 

Constructors in to.etc.domui.converter with parameters of type NumericPresentation
DoubleConverter(NumericPresentation np, int scale)
           
NumberConverter(java.lang.Class<T> actualType, NumericPresentation presentation, int scale)