Utility
The Utility
object provides utility functions for processing instances
of bound and not bound XML classes, as well as escaping text nodes.
The Utility
object provides utility functions for processing instances
of bound and not bound XML classes, as well as escaping text nodes.
- Authors
Burak Emir
Type members
Classlikes
Value members
Concrete methods
Appends "s" if string s
does not contain ",
's' otherwise.
Appends "s" if string s
does not contain ",
's' otherwise.
Returns '''null'''
if the value is a correct attribute value,
error message if it isn't.
Returns '''null'''
if the value is a correct attribute value,
error message if it isn't.
Returns a set of all namespaces used in a sequence of nodes and all their descendants, including the empty namespaces.
Returns a set of all namespaces used in a sequence of nodes and all their descendants, including the empty namespaces.
Returns a hashcode for the given constituents of a node
Returns a hashcode for the given constituents of a node
See [66]
CharRef ::= "&#" '0'..'9' {'0'..'9'} ";"
| "&#x" '0'..'9'|'A'..'F'|'a'..'f' { hexdigit } ";"
See [66]
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.
- Todo
use a Writer instead
Return the node with its attribute list sorted alphabetically (prefixes are ignored)
Return the node with its attribute list sorted alphabetically (prefixes are ignored)
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.
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)
trim a child of an element. Attribute
values and Atom
nodes that
are not Text
nodes are unaffected.
trim a child of an element. Attribute
values and Atom
nodes that
are not Text
nodes are unaffected.
Deprecated methods
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.
- Deprecated
Inherited methods
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.
- Inherited from
- TokenTests
See [5] of XML 1.0 specification.
Name ::= ( Letter | '_' ) (NameChar)*
See [5] of XML 1.0 specification.
- Inherited from
- TokenTests
See [4] and [4a] of Appendix B of XML 1.0 specification.
NameChar ::= Letter | Digit | '.' | '-' | '_' | ':' | #xB7
| CombiningChar | Extender
See [4] and [4a] of Appendix B of XML 1.0 specification.
- Inherited from
- TokenTests
where Letter means in one of the Unicode general
categories { Ll, Lu, Lo, Lt, Nl }
.
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 [4] and Appendix B of XML 1.0 specification
- Inherited from
- TokenTests
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.
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.
- Value Params
- ianaEncoding
The IANA encoding name.
- Inherited from
- TokenTests