Liquid XML Data Binder (C++, Java, VB6) / Reference / Java / Reference / com.liquid_technologies.ltxmllib20 / Java XmlObjectInterface
In This Topic
    Java XmlObjectInterface
    In This Topic
    com.liquid_technologies.ltxmllib20.XmlObjectInterface Class
    The base interface for all XML objects, everything should implement this interface

    Much of the functionality underlying this interface is implemented in XmlObjectBase.

    Base Classes:
    Implemented interfaces: Serializable, Cloneable
      Members Description  
        clone Creates a 'deep' copy of the object  
        fromJson Reads data into the object, from an JSON string  
        fromJsonFile Reads JSON data the object, from a file  
        fromJsonStream Reads JSON from a java stream.  
        fromXml Reads data into the object, from an XML string  
        fromXmlElement Reads data into the object, from a pre-parsed XML Document.  
        fromXmlFile Reads XML data the object, from a file  
        fromXmlStream Reads XML from a java stream.  
        getBase Gets the XmlObjectBase that all XML objects must derive from.  
        getNamespace Gets the namespace of the current class  
        getTargetNamespace Gets the target namespace for the current XML document  
        toJson Turns the object into an JSON string  
        toJsonFile Turns the object into JSON, and writes it to a file  
        toJsonStream Turns the object into a JSON (as a byte array)  
        toXml Turns the object into an XML string  
        toXmlFile Turns the object into XML, and writes it to a file  
        toXmlStream Turns the object into a XML (as a byte array)