Class DocumentContainer

java.lang.Object
org.apache.commons.jxpath.xml.XMLParser2
org.apache.commons.jxpath.xml.DocumentContainer
All Implemented Interfaces:
Serializable, Container, XMLParser

public class DocumentContainer extends XMLParser2 implements Container
An XML document container reads and parses XML only when it is accessed. JXPath traverses Containers transparently - you use the same paths to access objects in containers as you do to access those objects directly. You can create XMLDocumentContainers for various XML documents that may or may not be accessed by XPaths. If they are, they will be automatically read, parsed and traversed. If they are not - they won't be read at all.
See Also:
  • Field Details

  • Constructor Details

    • DocumentContainer

      public DocumentContainer(URL xmlURL)
      Use this constructor if the desired model is DOM.
      Parameters:
      xmlURL - is a URL for an XML file. Use getClass().getResource(resourceName) to load XML from a resource file.
    • DocumentContainer

      public DocumentContainer(URL xmlUrl, String model)
      Constructs a new DocumentContainer.
      Parameters:
      xmlUrl - is a URL for an XML file. Use getClass().getResource (resourceName) to load XML from a resource file.
      model - is one of the MODEL_* constants defined in this class. It determines which parser should be used to load the XML.
  • Method Details

    • registerXMLParser

      public static void registerXMLParser(String model, String parserClassName)
      Add a class of a custom XML parser. Parsers for the models "DOM" and "JDOM" are pre-registered.
      Parameters:
      model - model name
      parserClassName - parser class name
    • registerXMLParser

      public static void registerXMLParser(String model, XMLParser parser)
      Add an XML parser. Parsers for the models "DOM" and "JDOM" are pre-registered.
      Parameters:
      model - model name
      parser - parser
    • getValue

      public Object getValue()
      Reads XML, caches it internally and returns the Document.
      Specified by:
      getValue in interface Container
      Returns:
      Object
    • parseXML

      public Object parseXML(InputStream stream)
      Parses XML using the parser for the specified model.
      Specified by:
      parseXML in interface XMLParser
      Specified by:
      parseXML in class XMLParser2
      Parameters:
      stream - InputStream
      Returns:
      Object
    • setValue

      public void setValue(Object value)
      Throws an UnsupportedOperationException.
      Specified by:
      setValue in interface Container
      Parameters:
      value - value (not) to set