-
public interface XmlToObjectIf a class implements the interfaceXmlToObjectcan transform a xml string to an object
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description <T> TtoObject(@NonNull java.lang.String xmlString, @NonNull java.lang.Class<T> clazz)Transforms the given xmlStringobject to an object of the given class type
-
-
-
Method Detail
-
toObject
<T> T toObject(@NonNull @NonNull java.lang.String xmlString, @NonNull @NonNull java.lang.Class<T> clazz)Transforms the given xmlStringobject to an object of the given class type- Type Parameters:
T- the generic type of the argument object class type- Parameters:
xmlString- the xml asStringobjectclazz- the class from the object that will be returned- Returns:
- the object
-
-