Skip navigation links

Package com.sforce.ws.bind

Provides Java to XML binding.

See: Description

Package com.sforce.ws.bind Description

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:
Skip navigation links

Copyright © 2016. All Rights Reserved.