Package com.bc.ceres.binding.converters
Class IntervalConverter
java.lang.Object
com.bc.ceres.binding.converters.IntervalConverter
- All Implemented Interfaces:
Converter<ValueRange>
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionformat(ValueRange value) Converts a value of the type returned byConverter.getValueType()to its plain text representation.Gets the value type.Converts a value from its plain text representation to a Java object instance of the type returned byConverter.getValueType().
-
Constructor Details
-
IntervalConverter
public IntervalConverter()
-
-
Method Details
-
getValueType
Description copied from interface:ConverterGets the value type.- Specified by:
getValueTypein interfaceConverter<ValueRange>- Returns:
- The value type.
-
parse
Description copied from interface:ConverterConverts a value from its plain text representation to a Java object instance of the type returned byConverter.getValueType().- Specified by:
parsein interfaceConverter<ValueRange>- Parameters:
text- The textual representation of the value.- Returns:
- The converted value.
- Throws:
ConversionException- If the conversion fails.
-
format
Description copied from interface:ConverterConverts a value of the type returned byConverter.getValueType()to its plain text representation.- Specified by:
formatin interfaceConverter<ValueRange>- Parameters:
value- The value to be converted to text.- Returns:
- The textual representation of the value.
-