Packages

object XML extends XMLLoader[Elem]

The object XML provides constants, and functions to load and save XML elements. Use this when data binding is not desired, i.e. when XML is handled using Symbol nodes.

Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. XML
  2. XMLLoader
  3. AnyRef
  4. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Value Members

  1. def adapter: FactoryAdapter
    Definition Classes
    XMLLoader
  2. val encoding: String
  3. val lang: String
  4. def load(reader: Reader): Elem
    Definition Classes
    XMLLoader
  5. def load(inputStream: InputStream): Elem
    Definition Classes
    XMLLoader
  6. def load(sysId: String): Elem
    Definition Classes
    XMLLoader
  7. def load(url: URL): Elem
    Definition Classes
    XMLLoader
  8. def load(inputSource: InputSource): Elem
    Definition Classes
    XMLLoader
  9. def loadDocument(reader: Reader): Document
    Definition Classes
    XMLLoader
  10. def loadDocument(inputStream: InputStream): Document
    Definition Classes
    XMLLoader
  11. def loadDocument(sysId: String): Document
    Definition Classes
    XMLLoader
  12. def loadDocument(url: URL): Document
    Definition Classes
    XMLLoader
  13. def loadDocument(inputSource: InputSource): Document

    Loads XML Document.

    Loads XML Document.

    Definition Classes
    XMLLoader
  14. def loadFile(fileDescriptor: FileDescriptor): Elem
    Definition Classes
    XMLLoader
  15. def loadFile(file: File): Elem
    Definition Classes
    XMLLoader
  16. def loadFile(fileName: String): Elem
    Definition Classes
    XMLLoader
  17. def loadFileDocument(fileDescriptor: FileDescriptor): Document
    Definition Classes
    XMLLoader
  18. def loadFileDocument(file: File): Document
    Definition Classes
    XMLLoader
  19. def loadFileDocument(fileName: String): Document
    Definition Classes
    XMLLoader
  20. def loadFileNodes(fileDescriptor: FileDescriptor): Seq[Node]
    Definition Classes
    XMLLoader
  21. def loadFileNodes(file: File): Seq[Node]
    Definition Classes
    XMLLoader
  22. def loadFileNodes(fileName: String): Seq[Node]
    Definition Classes
    XMLLoader
  23. def loadNodes(reader: Reader): Seq[Node]
    Definition Classes
    XMLLoader
  24. def loadNodes(inputStream: InputStream): Seq[Node]
    Definition Classes
    XMLLoader
  25. def loadNodes(sysId: String): Seq[Node]
    Definition Classes
    XMLLoader
  26. def loadNodes(url: URL): Seq[Node]
    Definition Classes
    XMLLoader
  27. def loadNodes(inputSource: InputSource): Seq[Node]

    Load XML nodes, including comments and processing instructions that precede and follow the root element.

    Load XML nodes, including comments and processing instructions that precede and follow the root element.

    Definition Classes
    XMLLoader
  28. def loadString(string: String): Elem
    Definition Classes
    XMLLoader
  29. def loadStringDocument(string: String): Document
    Definition Classes
    XMLLoader
  30. def loadStringNodes(string: String): Seq[Node]
    Definition Classes
    XMLLoader
  31. def loadXML(inputSource: InputSource, parser: SAXParser): Elem

    Loads XML from the given InputSource, using the supplied parser or reader.

    Loads XML from the given InputSource, using the supplied parser or reader. The methods available in scala.xml.XML use the XML parser in the JDK (unless another parser is present on the classpath).

    Definition Classes
    XMLLoader
  32. def loadXMLNodes(inputSource: InputSource, parser: SAXParser): Seq[Node]
    Definition Classes
    XMLLoader
  33. val namespace: String
  34. def parser: SAXParser
    Definition Classes
    XMLLoader
  35. val preserve: String
  36. def reader: org.xml.sax.XMLReader
    Definition Classes
    XMLLoader
  37. final def save(filename: String, node: Node, enc: String = "UTF-8", xmlDecl: Boolean = false, doctype: DocType = null): Unit

    Saves a node to a file with given filename using given encoding optionally with xmldecl and doctype declaration.

    Saves a node to a file with given filename using given encoding optionally with xmldecl and doctype declaration.

    Note: Before scala-xml 1.1.0, the default encoding was ISO-8859-1 (latin1). If your code depends on characters in non-ASCII latin1 range, specify ISO-8859-1 encoding explicitly.

    filename

    the filename

    node

    the xml node we want to write

    enc

    encoding to use

    xmlDecl

    if true, write xml declaration

    doctype

    if not null, write doctype declaration

  38. val space: String
  39. def withSAXParser(p: SAXParser): XMLLoader[Elem]

    Returns an XMLLoader whose load* methods will use the supplied SAXParser.

  40. def withXMLReader(r: XMLReader): XMLLoader[Elem]

    Returns an XMLLoader whose load* methods will use the supplied XMLReader.

  41. final def write(w: Writer, node: Node, enc: String, xmlDecl: Boolean, doctype: DocType, minimizeTags: MinimizeMode.Value = MinimizeMode.Default): Unit

    Writes the given node using writer, optionally with xml decl and doctype.

    Writes the given node using writer, optionally with xml decl and doctype. It's the caller's responsibility to close the writer.

    w

    the writer

    node

    the xml node we want to write

    enc

    the string to be used in xmlDecl

    xmlDecl

    if true, write xml declaration

    doctype

    if not null, write doctype declaration

  42. val xml: String
  43. val xmlns: String