Object

scala.xml

Utility

Related Doc: package xml

Permalink

object Utility extends TokenTests

The Utility object provides utility functions for processing instances of bound and not bound XML classes, as well as escaping text nodes.

Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Utility
  2. TokenTests
  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. object Escapes

    Permalink
  5. final val SU: Char('\032')

    Permalink
  6. def appendEscapedQuoted(s: String, sb: StringBuilder): StringBuilder

    Permalink

    Appends "s" and escapes and " i s with \"

  7. def appendQuoted(s: String, sb: StringBuilder): collection.mutable.StringBuilder

    Permalink

    Appends "s" if string s does not contain ", 's' otherwise.

  8. def appendQuoted(s: String): String

    Permalink
  9. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  10. def checkAttributeValue(value: String): String

    Permalink

    Returns null if the value is a correct attribute value, error message if it isn't.

  11. def checkPubID(s: String): Boolean

    Permalink
    Definition Classes
    TokenTests
  12. def checkSysID(s: String): Boolean

    Permalink
    Definition Classes
    TokenTests
  13. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  14. def collectNamespaces(n: Node, set: Set[String]): Unit

    Permalink

    Adds all namespaces in node to set.

  15. def collectNamespaces(nodes: Seq[Node]): Set[String]

    Permalink

    Returns a set of all namespaces used in a sequence of nodes and all their descendants, including the empty namespaces.

  16. final def eq(arg0: AnyRef): Boolean

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

    Permalink
    Definition Classes
    AnyRef → Any
  18. final def escape(text: String, s: StringBuilder): StringBuilder

    Permalink

    Appends escaped string to s.

  19. final def escape(text: String): String

    Permalink

    Escapes the characters < > & and " from string.

  20. def finalize(): Unit

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

    Permalink
    Definition Classes
    AnyRef → Any
  22. def getName(s: String, index: Int): String

    Permalink
  23. def hashCode(pre: String, label: String, attribHashCode: Int, scpeHash: Int, children: Seq[Node]): Int

    Permalink

    Returns a hashcode for the given constituents of a node

  24. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  25. implicit def implicitSbToString(sb: StringBuilder): String

    Permalink
  26. def isAlpha(c: Char): Boolean

    Permalink

    These are 99% sure to be redundant but refactoring on the safe side.

    These are 99% sure to be redundant but refactoring on the safe side.

    Definition Classes
    TokenTests
  27. def isAlphaDigit(c: Char): Boolean

    Permalink
    Definition Classes
    TokenTests
  28. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  29. def isName(s: String): Boolean

    Permalink

    Name ::= ( Letter | '_' ) (NameChar)*

    See [5] of XML 1.0 specification.

    Definition Classes
    TokenTests
  30. def isNameChar(ch: Char): Boolean

    Permalink

    NameChar ::= Letter | Digit | '.' | '-' | '_' | ':'
               | CombiningChar | Extender

    See [4] and Appendix B of XML 1.0 specification.

    Definition Classes
    TokenTests
  31. def isNameStart(ch: Char): Boolean

    Permalink

    NameStart ::= ( Letter | '_' )

    where Letter means in one of the Unicode general categories { Ll, Lu, Lo, Lt, Nl }.

    We do not allow a name to start with :. See [3] and Appendix B of XML 1.0 specification

    Definition Classes
    TokenTests
  32. def isPubIDChar(ch: Char): Boolean

    Permalink
    Definition Classes
    TokenTests
  33. final def isSpace(cs: Seq[Char]): Boolean

    Permalink

    (#x20 | #x9 | #xD | #xA)+
    Definition Classes
    TokenTests
  34. final def isSpace(ch: Char): Boolean

    Permalink

    (#x20 | #x9 | #xD | #xA)
    Definition Classes
    TokenTests
  35. def isValidIANAEncoding(ianaEncoding: Seq[Char]): Boolean

    Permalink

    Returns true if the encoding name is a valid IANA encoding.

    Returns true if the encoding name is a valid IANA encoding. This method does not verify that there is a decoder available for this encoding, only that the characters are valid for an IANA encoding name.

    ianaEncoding

    The IANA encoding name.

    Definition Classes
    TokenTests
  36. final def ne(arg0: AnyRef): Boolean

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

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

    Permalink
    Definition Classes
    AnyRef
  39. def parseAttributeValue(value: String): Seq[Node]

    Permalink
  40. def parseCharRef(ch: () ⇒ Char, nextch: () ⇒ Unit, reportSyntaxError: (String) ⇒ Unit, reportTruncatedError: (String) ⇒ Unit): String

    Permalink

    CharRef ::= "&#" '0'..'9' {'0'..'9'} ";"
              | "&#x" '0'..'9'|'A'..'F'|'a'..'f' { hexdigit } ";"

    See [66]

  41. final def prefix(name: String): Option[String]

    Permalink

    Returns prefix of qualified name if any.

  42. def sequenceToXML(children: Seq[Node], pscope: NamespaceBinding = TopScope, sb: StringBuilder = new StringBuilder, stripComments: Boolean = false, decodeEntities: Boolean = true, preserveWhitespace: Boolean = false, minimizeTags: MinimizeMode.Value = MinimizeMode.Default): Unit

    Permalink
  43. def serialize(x: Node, pscope: NamespaceBinding = TopScope, sb: StringBuilder = new StringBuilder, stripComments: Boolean = false, decodeEntities: Boolean = true, preserveWhitespace: Boolean = false, minimizeTags: MinimizeMode.Value = MinimizeMode.Default): StringBuilder

    Permalink

    Serialize an XML Node to a StringBuilder.

    Serialize an XML Node to a StringBuilder.

    This is essentially a minor rework of toXML that can't have the same name due to an unfortunate combination of named/default arguments and overloading.

    To do

    use a Writer instead

  44. def sort(n: Node): Node

    Permalink

    Return the node with its attribute list sorted alphabetically (prefixes are ignored)

  45. def sort(md: MetaData): MetaData

    Permalink

    returns a sorted attribute list

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

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

    Permalink
    Definition Classes
    AnyRef → Any
  48. def trim(x: Node): Node

    Permalink

    Trims an element - call this method, when you know that it is an element (and not a text node) so you know that it will not be trimmed away.

    Trims an element - call this method, when you know that it is an element (and not a text node) so you know that it will not be trimmed away. With this assumption, the function can return a Node, rather than a Seq[Node]. If you don't know, call trimProper and account for the fact that you may get back an empty sequence of nodes.

    Precondition: node is not a text node (it might be trimmed)

  49. def trimProper(x: Node): Seq[Node]

    Permalink

    trim a child of an element.

    trim a child of an element. Attribute values and Atom nodes that are not Text nodes are unaffected.

  50. final def unescape(ref: String, s: StringBuilder): StringBuilder

    Permalink

    Appends unescaped string to s, amp becomes &, lt becomes < etc..

    Appends unescaped string to s, amp becomes &, lt becomes < etc..

    returns

    null if ref was not a predefined entity.

  51. final def wait(): Unit

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

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Deprecated Value Members

  1. def toXML(x: Node, pscope: NamespaceBinding = TopScope, sb: StringBuilder = new StringBuilder, stripComments: Boolean = false, decodeEntities: Boolean = true, preserveWhitespace: Boolean = false, minimizeTags: Boolean = false): StringBuilder

    Permalink

    Serialize the provided Node to the provided StringBuilder.

    Serialize the provided Node to the provided StringBuilder.

    Note that calling this source-compatible method will result in the same old, arguably almost universally unwanted, behaviour.

    Annotations
    @deprecated
    Deprecated

    (Since version 2.10.0) Please use serialize instead and specify a minimizeTags parameter

Inherited from TokenTests

Inherited from AnyRef

Inherited from Any

Ungrouped