org.apache.struts2.util
abstract public class: StrutsTypeConverter [javadoc |
source]
java.lang.Object
ognl.DefaultTypeConverter
org.apache.struts2.util.StrutsTypeConverter
Direct Known Subclasses:
EnumTypeConverter, DateConverter
Base class for type converters used in Struts. This class provides two abstract methods that are used to convert
both to and from strings -- the critical functionality that is core to Struts's type coversion system.
Type converters do not have to use this class. It is merely a helper base class, although it is recommended that
you use this class as it provides the common type conversion contract required for all web-based type conversion.
There's a hook (fall back method) called
performFallbackConversion of which
could be used to perform some fallback conversion if
convertValue method of this
failed. By default it just ask its super class (Ognl's DefaultTypeConverter) to do the conversion.
To allow the framework to recognize that a conversion error has occurred, throw an XWorkException or
preferable a TypeConversionException.
| Method from org.apache.struts2.util.StrutsTypeConverter Detail: |
abstract public Object convertFromString(Map context,
String[] values,
Class toClass)
Converts one or more String values to the specified class. |
abstract public String convertToString(Map context,
Object o)
Converts the specified object to a String. |
public Object convertValue(Map context,
Object o,
Class toClass) {
if (toClass.equals(String.class)) {
return convertToString(context, o);
} else if (o instanceof String[]) {
return convertFromString(context, (String[]) o, toClass);
} else if (o instanceof String) {
return convertFromString(context, new String[]{(String) o}, toClass);
} else {
return performFallbackConversion(context, o, toClass);
}
}
|
protected Object performFallbackConversion(Map context,
Object o,
Class toClass) {
return super.convertValue(context, o, toClass);
}
Hook to perform a fallback conversion if every default options failed. By default
this will ask Ognl's DefaultTypeConverter (of which this class extends) to
perform the conversion. |