org.apache.bsf.util.type

Interface TypeConvertor

public interface TypeConvertor

A TypeConvertor is used to convert an object of one type to one of another type. The convertor is invoked with the class of the from object, the desired class, and the from object itself. The convertor must return a new object of the desired class.

Author: Sanjiva Weerawarana

See Also: TypeConvertorRegistry

Method Summary
Objectconvert(Class from, Class to, Object obj)
StringgetCodeGenString()

Method Detail

convert

public Object convert(Class from, Class to, Object obj)

getCodeGenString

public String getCodeGenString()