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. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. def adapter: FactoryAdapter
    Definition Classes
    XMLLoader
  5. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  6. def clone(): AnyRef
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()
  7. val encoding: String
  8. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  9. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  10. def finalize(): Unit
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  11. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  12. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  13. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  14. val lang: String
  15. def load(url: URL): Elem
    Definition Classes
    XMLLoader
  16. def load(source: InputSource): Elem
    Definition Classes
    XMLLoader
  17. def load(sysID: String): Elem
    Definition Classes
    XMLLoader
  18. def load(reader: Reader): Elem
    Definition Classes
    XMLLoader
  19. def load(is: InputStream): Elem

    loads XML from given InputStream, Reader, sysID, InputSource, or URL.

    loads XML from given InputStream, Reader, sysID, InputSource, or URL.

    Definition Classes
    XMLLoader
  20. def loadFile(name: String): Elem
    Definition Classes
    XMLLoader
  21. def loadFile(fd: FileDescriptor): Elem
    Definition Classes
    XMLLoader
  22. def loadFile(file: File): Elem

    Loads XML from the given file, file descriptor, or filename.

    Loads XML from the given file, file descriptor, or filename.

    Definition Classes
    XMLLoader
  23. def loadFileNodes(name: String): Seq[Node]
    Definition Classes
    XMLLoader
  24. def loadFileNodes(fd: FileDescriptor): Seq[Node]
    Definition Classes
    XMLLoader
  25. def loadFileNodes(file: File): 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
  26. def loadNodes(url: URL): Seq[Node]
    Definition Classes
    XMLLoader
  27. def loadNodes(source: InputSource): Seq[Node]
    Definition Classes
    XMLLoader
  28. def loadNodes(sysID: String): Seq[Node]
    Definition Classes
    XMLLoader
  29. def loadNodes(reader: Reader): Seq[Node]
    Definition Classes
    XMLLoader
  30. def loadNodes(is: InputStream): Seq[Node]
    Definition Classes
    XMLLoader
  31. def loadString(string: String): Elem

    Loads XML from the given String.

    Loads XML from the given String.

    Definition Classes
    XMLLoader
  32. def loadStringNodes(string: String): Seq[Node]
    Definition Classes
    XMLLoader
  33. def loadXML(source: InputSource, parser: SAXParser): Elem

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

    Loads XML from the given InputSource, using the supplied parser. The methods available in scala.xml.XML use the XML parser in the JDK.

    Definition Classes
    XMLLoader
  34. def loadXMLNodes(source: InputSource, parser: SAXParser): Seq[Node]
    Definition Classes
    XMLLoader
  35. val namespace: String
  36. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  37. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  38. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  39. def parser: SAXParser
    Definition Classes
    XMLLoader
  40. val preserve: String
  41. 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

  42. val space: String
  43. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  44. def toString(): String
    Definition Classes
    AnyRef → Any
  45. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  46. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  47. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()
  48. def withSAXParser(p: SAXParser): XMLLoader[Elem]

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

  49. 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

  50. val xml: String
  51. val xmlns: String

Inherited from XMLLoader[Elem]

Inherited from AnyRef

Inherited from Any

Ungrouped