Object

scala.xml

XML

Related Doc: package xml

Permalink

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.

Version

1.0, 25/04/2005

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

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  4. def adapter: FactoryAdapter

    Permalink
    Definition Classes
    XMLLoader
  5. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  6. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  7. val encoding: String

    Permalink
  8. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  9. def equals(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  10. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  11. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  12. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  13. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  14. val lang: String

    Permalink
  15. def load(url: URL): Elem

    Permalink
    Definition Classes
    XMLLoader
  16. def load(source: InputSource): Elem

    Permalink
    Definition Classes
    XMLLoader
  17. def load(sysID: String): Elem

    Permalink
    Definition Classes
    XMLLoader
  18. def load(reader: Reader): Elem

    Permalink
    Definition Classes
    XMLLoader
  19. def load(is: InputStream): Elem

    Permalink

    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

    Permalink
    Definition Classes
    XMLLoader
  21. def loadFile(fd: FileDescriptor): Elem

    Permalink
    Definition Classes
    XMLLoader
  22. def loadFile(file: File): Elem

    Permalink

    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 loadString(string: String): Elem

    Permalink

    Loads XML from the given String.

    Loads XML from the given String.

    Definition Classes
    XMLLoader
  24. def loadXML(source: InputSource, parser: SAXParser): Elem

    Permalink

    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
  25. val namespace: String

    Permalink
  26. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  27. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  28. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  29. def parser: SAXParser

    Permalink
    Definition Classes
    XMLLoader
  30. val preserve: String

    Permalink
  31. final def save(filename: String, node: Node, enc: String = encoding, xmlDecl: Boolean = false, doctype: DocType = null): Unit

    Permalink

    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.

    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

  32. val space: String

    Permalink
  33. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  34. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  35. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  36. final def wait(arg0: Long, arg1: Int): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  37. final def wait(arg0: Long): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  38. def withSAXParser(p: SAXParser): XMLLoader[Elem]

    Permalink

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

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

    Permalink

    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

  40. val xml: String

    Permalink
  41. val xmlns: String

    Permalink

Inherited from XMLLoader[Elem]

Inherited from AnyRef

Inherited from Any

Ungrouped