| com.jidesoft.converter.ObjectConverter
All known Subclasses: com.jidesoft.converter.StringArrayConverter, com.jidesoft.converter.FontNameConverter, com.jidesoft.converter.EnumConverter, com.jidesoft.converter.BooleanConverter, com.jidesoft.converter.QuarterNameConverter, com.jidesoft.converter.MonthNameConverter, com.jidesoft.converter.DateConverter, com.jidesoft.converter.YearNameConverter, com.jidesoft.converter.NumberConverter, com.jidesoft.converter.MonthConverter, com.jidesoft.converter.ColorConverter, com.jidesoft.converter.FileConverter, com.jidesoft.converter.DefaultObjectConverter, com.jidesoft.converter.FontConverter, com.jidesoft.converter.ArrayConverter,
ObjectConverter | public interface ObjectConverter (Code) | | An interface that can convert a object to a String and convert from
String to object.
|
fromString | abstract Object fromString(String string, ConverterContext context)(Code) | | Converts from String to an object.
Parameters: string - the string Parameters: context - context to be converted the object converted from string |
supportFromString | abstract boolean supportFromString(String string, ConverterContext context)(Code) | | If it supports fromString.
Parameters: string - the string Parameters: context - context to be converted true if it supports |
supportToString | abstract boolean supportToString(Object object, ConverterContext context)(Code) | | If it supports toString method.
Parameters: object - object to be converted Parameters: context - converter context to be used true if supports toString |
toString | abstract String toString(Object object, ConverterContext context)(Code) | | Converts from object to String based on current locale.
Parameters: object - object to be converted Parameters: context - converter context to be used the String |
|
|