Scala Library
|
|
scala/xml/SpecialNode.scala
]
abstract
class
SpecialNode
extends
Node with
XMLEvent
SpecialNode
is a special XML node which
represents either text (PCDATA), a comment, a PI, or an entity ref.
SpecialNodes also play the role of XMLEvents for pull-parsing.
Method Summary | |
override final def
|
attributes
: Null
always empty
|
abstract def
|
buildString
(sb : StringBuilder) : StringBuilder
append string representation to the given stringbuffer
|
final def
|
child
: Nil
always empty
|
override final def
|
namespace
: Null
always Node.EmptyNamespace
|
Methods inherited from Node | |
label (abstract), prefix, isAtom, doCollectNamespaces, doTransform, scope, getNamespace, attribute, attribute, descendant, descendant_or_self, equals, hashCode, theSeq, buildString, toString, nameToString, xmlType, text |
Methods inherited from NodeSeq | |
newBuilder, length, iterator, apply, apply, \, \\ |
Methods inherited from Sequence | |
companion |
Methods inherited from SequenceTemplate | |
lengthCompare, size, isDefinedAt, zip, zipAll, zipWithIndex, segmentLength, prefixLength, indexWhere, indexWhere, findIndexOf, indexOf, indexOf, lastIndexOf, lastIndexOf, lastIndexWhere, lastIndexWhere, reverse, reverseIterator, reversedElements, startsWith, startsWith, endsWith, indexOfSeq, indexOfSeq, lastIndexOfSeq, lastIndexOfSeq, contains, union, diff, intersect, removeDuplicates, patch, padTo, toSequence, indices, view, view, sortWith, findLastIndexOf, slice, equalsWith, containsSlice, projection |
Methods inherited from PartialFunction | |
orElse, andThen |
Methods inherited from Function1 | |
compose |
Methods inherited from IterableTemplate | |
elements, foreach, isEmpty, foldRight, reduceRight, toIterable, head, takeRight, dropRight, sameElements, toStream, first, firstOption, toSeq |
Methods inherited from TraversableClass | |
genericBuilder, unzip, flatten, transpose |
Methods inherited from TraversableTemplate | |
thisCollection, nonEmpty, hasDefiniteSize, ++, ++, map, flatMap, filter, filterMap, filterNot, remove, partition, groupBy, forall, exists, count, find, foldLeft, /:, :\, reduceLeft, reduceLeftOption, reduceRightOption, headOption, tail, last, lastOption, init, take, drop, slice, takeWhile, dropWhile, span, splitAt, copyToBuffer, copyToArray, copyToArray, toArray, toList, toSet, mkString, mkString, mkString, addString, addString, addString, stringPrefix |
Methods inherited from AnyRef | |
getClass, clone, notify, notifyAll, wait, wait, wait, finalize, ==, !=, eq, ne, synchronized |
Methods inherited from Any | |
==, !=, isInstanceOf, asInstanceOf |
Method Details |
override final
def
attributes : Null
override final
def
namespace : Null
final
def
child : Nil
abstract
def
buildString(sb : StringBuilder) : StringBuilder
Scala Library
|
|