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
    @IntrinsicCandidate() @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. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
    Annotations
    @IntrinsicCandidate()
  11. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
    Annotations
    @IntrinsicCandidate()
  12. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  13. val lang: String

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

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

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

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

    Permalink
    Definition Classes
    XMLLoader
  18. 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
  19. def loadFile(name: String): Elem

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

    Permalink
    Definition Classes
    XMLLoader
  21. 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
  22. def loadString(string: String): Elem

    Permalink

    Loads XML from the given String.

    Loads XML from the given String.

    Definition Classes
    XMLLoader
  23. 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
  24. val namespace: String

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

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @IntrinsicCandidate()
  27. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @IntrinsicCandidate()
  28. def parser: SAXParser

    Permalink
    Definition Classes
    XMLLoader
  29. val preserve: String

    Permalink
  30. 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

  31. val space: String

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

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

    Permalink
    Definition Classes
    AnyRef → Any
  34. final def wait(arg0: Long, arg1: Int): Unit

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  36. final def wait(): Unit

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

    Permalink

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

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

  39. val xml: String

    Permalink
  40. val xmlns: String

    Permalink

Deprecated Value Members

  1. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @Deprecated @deprecated @throws( classOf[java.lang.Throwable] )
    Deprecated

    (Since version ) see corresponding Javadoc for more information.

Inherited from XMLLoader[Elem]

Inherited from AnyRef

Inherited from Any

Ungrouped