All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.sforce.ws.bind.package.html Maven / Gradle / Ivy

There is a newer version: 62.0.0
Show newest version






Provides Java to XML binding.

Typical Java to XML usage:

    XmlOutputStream out = ...
    TypeInfo info = ...

    TypeMapper mapper = new TypeMapper();
    mapper.writeObject(out, info, value, isSet);

Typical XML to Java usage:

    XmlInputStream in = ...
    TypeInfo info = ...
    Class expectedType = ...

    TypeMapper mapper = new TypeMapper();
    Object object = mapper.readObject(in, info, expectedType); 

Package Specification

Related Documentation

For overviews, tutorials, examples, guides, and tool documentation, please see:




© 2015 - 2024 Weber Informatics LLC | Privacy Policy