|
Scala Library
|
|
scala/xml/EntityRef.scala]
case
class
EntityRef(val entityName : java.lang.String)
extends SpecialNode with ProductEntityRef implements an XML node for entity
references.text - the text contained in this node.| Method Summary | |
override def
|
equals
(x : Any) : Boolean
structural equality
|
override def
|
hashCode : Int |
def
|
label
: java.lang.String
the constant "#ENTITY"
|
override def
|
productArity
: Int
return k for a product
A(x_1,...,x_k) |
override def
|
productElement
(arg0 : Int) : Any
for a product
A(x_1,...,x_k), returns x_(n+1)
for 0 <= n < k |
override def
|
productPrefix
: java.lang.String
By default the empty string. Implementations may override this
method in order to prepend a string prefix to the result of the
toString methods.
|
override def
|
text
: java.lang.String
...
|
override def
|
toString
(sb : StringBuilder) : StringBuilder
Appends "& entityName;" to this string buffer.
|
| Methods inherited from SpecialNode | |
| attributes, namespace, child |
| Methods inherited from Node | |
| prefix, scope, getNamespace, attribute, attribute, descendant, descendant_or_self, theSeq, toString, toString, nameToString, xmlType |
| Methods inherited from NodeSeq | |
| length, elements, apply, apply, \, \\ |
| Methods inherited from Seq | |
| lengthCompare, size, isEmpty, concat, last, lastOption, first, firstOption, headOption, ++, isDefinedAt, lastIndexOf, findIndexOf, indexOf, map, flatMap, filter, take, drop, slice, slice, takeWhile, dropWhile, reverse, contains, subseq, toArray, toSeq, projection, equalsWith, startsWith, startsWith, endsWith, indexOf, containsSlice |
| Methods inherited from Collection | |
| stringPrefix |
| Methods inherited from Iterable | |
| partition, foreach, forall, exists, find, foldLeft, foldRight, /:, :\, reduceLeft, reduceRight, copyToBuffer, sameElements, toList, toStream, mkString, mkString, mkString, addString, addString, addString, copyToArray, hasDefiniteSize |
| Methods inherited from PartialFunction | |
| orElse, andThen |
| Methods inherited from Function1 | |
| compose |
| Methods inherited from AnyRef | |
| getClass, clone, notify, notifyAll, wait, wait, wait, finalize, ==, !=, eq, ne, synchronized |
| Methods inherited from Any | |
| ==, !=, isInstanceOf, asInstanceOf |
| Method Details |
def
label : java.lang.String
override
def
hashCode : Int
Returns a hashcode. The default implementation here calls only
super.hashcode (which is the same as for objects). A more useful
implementation can be invoked by calling
Utility.hashCode(pre, label, attributes.hashCode(), child).
override
def
text : java.lang.String
override
def
toString(sb : StringBuilder) : StringBuilder
sb - the string buffer.sb.override
def
productPrefix : java.lang.String
override
def
productArity : Int
A(x_1,...,x_k)A(x_1,...,x_k), returns x_(n+1)
for 0 <= n < kn - the index of the element to returnIndexOutOfBoundsException - n elements after the first element|
Scala Library
|
|