-
- 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.convertersfor the bundled ones.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Objectconvert(String value)Converts a String into an object, e.g.StringtoString(Object value)Converts an object into string, e.g.
-