Class PricingTypeBeanDisplayConverter
java.lang.Object
org.eclipse.nebula.widgets.nattable.data.convert.DisplayConverter
org.eclipse.nebula.widgets.nattable.examples.fixtures.PricingTypeBeanDisplayConverter
- All Implemented Interfaces:
IDisplayConverter
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptioncanonicalToDisplayValue
(Object canonicalValue) Convert backing data value to value to be displayed.displayToCanonicalValue
(Object displayValue) Convert from display value to value in the backing data structure.Methods inherited from class org.eclipse.nebula.widgets.nattable.data.convert.DisplayConverter
canonicalToDisplayValue, displayToCanonicalValue
-
Constructor Details
-
PricingTypeBeanDisplayConverter
public PricingTypeBeanDisplayConverter()
-
-
Method Details
-
canonicalToDisplayValue
Description copied from interface:IDisplayConverter
Convert backing data value to value to be displayed. Typically converts to a String for display.- Specified by:
canonicalToDisplayValue
in interfaceIDisplayConverter
- Specified by:
canonicalToDisplayValue
in classDisplayConverter
- Parameters:
canonicalValue
- The data value from the backing data.- Returns:
- The converted value to display.
-
displayToCanonicalValue
Description copied from interface:IDisplayConverter
Convert from display value to value in the backing data structure.NOTE:
The type the display value is converted to must match the type in the setter of the backing bean/row object- Specified by:
displayToCanonicalValue
in interfaceIDisplayConverter
- Specified by:
displayToCanonicalValue
in classDisplayConverter
- Parameters:
displayValue
- The display value that should be converted to the data value that matches the backing data.- Returns:
- The converted value to put to the backing data.
-