Package com.bc.ceres.binding.converters
Class PatternConverter
- java.lang.Object
-
- com.bc.ceres.binding.converters.PatternConverter
-
-
Constructor Summary
Constructors Constructor Description PatternConverter()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
format(Pattern value)
Converts a value of the type returned byConverter.getValueType()
to its plain text representation.Class<Pattern>
getValueType()
Gets the value type.Pattern
parse(String text)
Converts a value from its plain text representation to a Java object instance of the type returned byConverter.getValueType()
.
-
-
-
Method Detail
-
getValueType
public Class<Pattern> getValueType()
Description copied from interface:Converter
Gets the value type.- Specified by:
getValueType
in interfaceConverter<Pattern>
- Returns:
- The value type.
-
parse
public Pattern parse(String text) throws ConversionException
Description copied from interface:Converter
Converts a value from its plain text representation to a Java object instance of the type returned byConverter.getValueType()
.- Specified by:
parse
in interfaceConverter<Pattern>
- Parameters:
text
- The textual representation of the value.- Returns:
- The converted value.
- Throws:
ConversionException
- If the conversion fails.
-
format
public String format(Pattern value)
Description copied from interface:Converter
Converts a value of the type returned byConverter.getValueType()
to its plain text representation.
-
-