Trait

scales.xml.impl

XmlTypes

Related Doc: package impl

Permalink

trait XmlTypes extends AnyRef

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. XmlTypes
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Type Members

  1. type AttributeQName = EitherLike[PrefixedQName, NoNamespaceQName]

    Permalink

    An AttributeQName is either a PrefixedQName or a NoNamespaceQName

  2. type Attributes = ListSet[Attribute]

    Permalink

    An alias for am immutable ListSet of Attribute

  3. type ItemOrElem = EitherLike[XmlItem, Tree[XmlItem, Elem, XCC]]

    Permalink

    Alias for An XML ItemOrTree

  4. type Misc = Either[Comment, PI]

    Permalink

    Misc is either a Comment or PI, and is used for the Prolog and trailing Misc items in a Doc.

  5. type Miscs = Seq[Misc]

    Permalink

    A collection of Misc

  6. type XCC[T] = ImmutableArrayProxy[T]

    Permalink

    XML Collection - an alias for ImmutableArrayProxy

  7. type XmlBuilder = Builder[ItemOrElem, XmlChildren]

    Permalink

    Alias for a mutable builder of XmlChildren

  8. type XmlCBF = CanBuildFrom[XCC[_], utils.ItemOrTree[XmlItem, Elem, XCC], XCC[utils.ItemOrTree[XmlItem, Elem, XCC]]]

    Permalink

    Alias for the XmlTree CanBuildFrom

  9. type XmlChildren = ImmutableArrayProxy[ItemOrElem]

    Permalink

    An Alias for a collection of ItemOrElem, the children of a given tree node

  10. type XmlPath = Path[XmlItem, Elem, XCC]

    Permalink

    An alias for a Path over XmlTree

  11. type XmlTree = Tree[XmlItem, Elem, XCC]

    Permalink

    Alias for Trees of Elem and XmlItem

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 ElemMatcher(name: QName, attributes: AttributeQName*): AnyRef { ... /* 2 definitions in type refinement */ }

    Permalink

    Will match if the QNames are the same =:= and if the attributes are present (not requiring that these are the only attributes).

    Will match if the QNames are the same =:= and if the attributes are present (not requiring that these are the only attributes). What is returned is either a Seq of attribute values or a simple boolean

  5. def XmlBuilder(): XmlBuilder

    Permalink

    Default implementation for constructing an instance of XmlBuilder (ImmutableArrayProxyBuilder)

  6. final def addAndFocus(path: XmlPath, elem: Elem, dchildren: XmlChildren = emptyChildren): Path[XmlItem, Elem, XCC]

    Permalink

    Adds a subtree to this given path and returns a path focussed on the new subtree.

    Adds a subtree to this given path and returns a path focussed on the new subtree.

    The Tree is constructed from the elem and optional children.

  7. final def addChild(path: XmlPath, child: XmlItem): Path[XmlItem, Elem, XCC]

    Permalink

    Adds a child to the given subpath, however focus remains on the newly modified path

  8. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  9. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  10. val emptyAttributes: Attributes

    Permalink

    An empty collection of Attribute

  11. val emptyChildren: XmlChildren

    Permalink

    An empty collection of ItemOrElem

  12. val emptyMiscs: Miscs

    Permalink

    An empty collection of Misc

  13. val emptyNamespaces: Map[String, String]

    Permalink

    An empty Map of String -> String representing prefix -> namespace

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

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

    Permalink
    Definition Classes
    AnyRef → Any
  16. def finalize(): Unit

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

    Permalink
    Definition Classes
    AnyRef → Any
  18. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  19. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  20. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  21. val noXmlPath: XmlPath

    Permalink

    Use to signify a "null object", tree/path shouldn't work like this its a smell

  22. final def notify(): Unit

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

    Permalink
    Definition Classes
    AnyRef
  24. final def synchronized[T0](arg0: ⇒ T0): T0

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

    Permalink
    Definition Classes
    AnyRef → Any
  26. final def wait(): Unit

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

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  29. val xmlSeqLikeThing: SeqLikeThing[ImmutableArrayProxy[_], ItemOrElem, ImmutableArrayProxy]

    Permalink

    The xml typed ImmutableArrayProxy SeqLikeThing

Inherited from AnyRef

Inherited from Any

Ungrouped