Class DefaultTypeConverter
java.lang.Object
ognl.DefaultTypeConverter
- All Implemented Interfaces:
TypeConverter
Default type conversion. Converts among numeric types and also strings.
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionconvertValue(OgnlContext context, Object value, Class<?> toType) convertValue(OgnlContext context, Object target, Member member, String propertyName, Object value, Class<?> toType) Converts the given value to a given type.
-
Constructor Details
-
DefaultTypeConverter
public DefaultTypeConverter()
-
-
Method Details
-
convertValue
-
convertValue
public Object convertValue(OgnlContext context, Object target, Member member, String propertyName, Object value, Class<?> toType) Description copied from interface:TypeConverterConverts the given value to a given type. The OGNL context, target, member and name of property being set are given. This method should be able to handle conversion in general without any context, target, member or property name specified.- Specified by:
convertValuein interfaceTypeConverter- Parameters:
context- OGNL context under which the conversion is being donetarget- target object in which the property is being setmember- member (Constructor, Method or Field) being setpropertyName- property name being setvalue- value to be convertedtoType- type to which value is converted- Returns:
- Converted value of type toType or TypeConverter.NoConversionPossible to indicate that the conversion was not possible.
-