Package org.apache.axis.utils
Interface JavaUtils.ConvertCache
-
- All Known Implementing Classes:
ArrayDeserializer.ArrayListExtension
- Enclosing class:
- JavaUtils
public static interface JavaUtils.ConvertCacheIt the argument to the convert(...) method implements the ConvertCache interface, the convert(...) method will use the set/get methods to store and retrieve converted values.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.ObjectgetConvertedValue(java.lang.Class cls)java.lang.ClassgetDestClass()Get the destination array class described by the xmlvoidsetConvertedValue(java.lang.Class cls, java.lang.Object value)Set/Get converted values of the convert method.
-
-
-
Method Detail
-
setConvertedValue
void setConvertedValue(java.lang.Class cls, java.lang.Object value)Set/Get converted values of the convert method.
-
getConvertedValue
java.lang.Object getConvertedValue(java.lang.Class cls)
-
getDestClass
java.lang.Class getDestClass()
Get the destination array class described by the xml
-
-