-
- All Known Implementing Classes:
IntegerConverter
,LongConverter
,StringConverter
,VoidConverter
public interface Converter
Used to convert a String to an appropriate object and an object to its String representation. Must be stateless.
See
org.fissore.jrecordbind.converters
for the bundled ones.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Object
convert(String value)
Converts a String into an object, e.g.String
toString(Object value)
Converts an object into string, e.g.
-