Object

eu.cdevreeze.yaidom.utils

ClarkNode

Related Doc: package utils

Permalink

object ClarkNode

Node hierarchy of "Clark" nodes that are useful for element creation. They are like "resolved" elements except that they know about other nodes than element and text nodes alone. Also, the retain attribute order (although semantically not important).

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

Type Members

  1. sealed trait CanBeDocumentChild extends Node with queryapi.ClarkNodes.CanBeDocumentChild

    Permalink
  2. final case class Comment(text: String) extends CanBeDocumentChild with queryapi.ClarkNodes.Comment with Product with Serializable

    Permalink
  3. final class Elem extends CanBeDocumentChild with queryapi.ClarkNodes.Elem with ClarkElemLike with UpdatableElemLike with TransformableElemLike

    Permalink

    "Clark element".

    "Clark element". Like resolved elements in the API, but adding more node types and keeping order of attributes (although the latter is semantically not important).

    The purpose of this element implementation is element creation and transformation/update, without having to worry about namespace prefixes and any default namespaces.

    In other words, using this element implementation it is possible to localize concerns about namespace prefixes, instead of having to worry about them all the time during element creation.

  4. final case class EntityRef(entity: String) extends Node with queryapi.ClarkNodes.EntityRef with Product with Serializable

    Permalink

    An entity reference.

    An entity reference. For example:

    &hello;

    We obtain this entity reference as follows:

    EntityRef("hello")
  5. sealed trait Node extends queryapi.ClarkNodes.Node

    Permalink

    Node super-type of "Clark" elements.

  6. final case class ProcessingInstruction(target: String, data: String) extends CanBeDocumentChild with queryapi.ClarkNodes.ProcessingInstruction with Product with Serializable

    Permalink
  7. final case class Text(text: String, isCData: Boolean) extends Node with queryapi.ClarkNodes.Text with Product with Serializable

    Permalink

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 Elem

    Permalink
  5. object Node extends ElemCreationApi

    Permalink
  6. final def asInstanceOf[T0]: T0

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

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  8. final def eq(arg0: AnyRef): Boolean

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

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

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

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

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

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

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

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

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

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

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

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

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

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

Inherited from AnyRef

Inherited from Any

Ungrouped