Uses of Class
xmlwise.XmlParseException

Uses of XmlParseException in xmlwise
 

Methods in xmlwise that throw XmlParseException
static org.w3c.dom.Document Xmlwise.createDocument(java.lang.String xml)
          Creates a DOM Document from the specified XML string, ignoring DTD-validation.
static org.w3c.dom.Document Xmlwise.createDocument(java.lang.String xml, boolean validate, boolean loadExternalDTD)
          Creates a DOM Document from the specified XML string, ignoring DTD-validation.
static XmlElement Xmlwise.createXml(java.lang.String xml)
          Creates a document from a string and transforms it into an XmlElement tree.
static java.util.Map<java.lang.String,java.lang.Object> Plist.fromXml(java.lang.String xml)
          Create a nested map<String, Object> from a plist xml string using the default mapping.
static java.util.Map<java.lang.String,java.lang.Object> Plist.fromXmlElement(XmlElement element)
          Create a nested map<String, Object> from an XmlElement using the default mapping.
 boolean XmlElement.getBoolAttribute(java.lang.String attribute)
          Get an boolean attribute for this element.
 boolean XmlElement.getBoolAttribute(java.lang.String attribute, boolean defaultValue)
          Get an boolean attribute for this element, defaulting to the default value if missing.
 boolean XmlElementAttributes.getBoolean(java.lang.String attribute)
          Get an boolean attribute.
 double XmlElementAttributes.getDouble(java.lang.String attribute)
          Get a double attribute.
 double XmlElement.getDoubleAttribute(java.lang.String attribute)
          Get a double attribute for this element.
 double XmlElement.getDoubleAttribute(java.lang.String attribute, double defaultValue)
          Get an double attribute for this element, defaulting to a default value if the attribute is missing.
 int XmlElementAttributes.getInt(java.lang.String attribute)
          Get an integer attribute.
 int XmlElement.getIntAttribute(java.lang.String attribute)
          Get an integer attribute for this element.
 int XmlElement.getIntAttribute(java.lang.String attribute, int defaultValue)
          Get an integer attribute for this element, defaulting to a default value if the attribute is missing.
 XmlElement XmlElement.getUnique(java.lang.String name)
          Get the single direct sub-element with the given name.
static java.util.Map<java.lang.String,java.lang.Object> Plist.load(java.io.File file)
          Create a nested map<String, Object> from a plist xml file using the default mapping.
static java.util.Map<java.lang.String,java.lang.Object> Plist.load(java.lang.String filename)
          Create a nested map<String, Object> from a plist xml file using the default mapping.
static org.w3c.dom.Document Xmlwise.loadDocument(java.io.File file)
          Loads an XML document ignoring DTD-validation.
static org.w3c.dom.Document Xmlwise.loadDocument(java.io.File file, boolean validate, boolean loadExternalDTD)
          Loads an XML document.
static java.lang.Object Plist.loadObject(java.io.File file)
          Create an object from a plist xml file using the default mapping.
static java.lang.Object Plist.loadObject(java.lang.String filename)
          Create an object from a plist xml file using the default mapping.
static XmlElement Xmlwise.loadXml(java.io.File file)
          Loads a document from file and transforms it into an XmlElement tree.
static XmlElement Xmlwise.loadXml(java.lang.String filename)
          Loads a document from file and transforms it into an XmlElement tree.
static java.lang.Object Plist.objectFromXml(java.lang.String xml)
          Create an object from a plist xml string using the default mapping.
static java.lang.Object Plist.objectFromXmlElement(XmlElement element)
          Create an object from an XmlElement using the default mapping.