Packages

object XmlNode extends XmlNodeInstances with XmlNodeSyntax

Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. XmlNode
  2. XmlNodeSyntax
  3. XmlNodeInstances
  4. AnyRef
  5. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Type Members

  1. final class Group extends XmlNode

    Class that represent a group of nodes without a container node.

    Class that represent a group of nodes without a container node.

    You can convert a Group into Node using XmlNodeGroup.toNode method.

    <Foo a="1">
    <Foo a="2">
    <Foo a="3">
  2. final class Node extends XmlNode

    Represent a simple single XML node.

    Represent a simple single XML node.

    <Bar>
      <Foo a="1">
      <Foo a="2">
      <Foo a="3">
    </Bar>
  3. implicit class GenericXmlNodeReadOps[K <: XmlNode] extends AnyRef
    Definition Classes
    XmlNodeSyntax
  4. implicit class GenericXmlNodeWriteOps[K <: XmlNode] extends AnyRef
    Definition Classes
    XmlNodeSyntax
  5. implicit class XmlNodeCursorOps extends AnyRef
    Definition Classes
    XmlNodeSyntax
  6. implicit class XmlNodeNodeWriteOps extends AnyRef
    Definition Classes
    XmlNodeSyntax

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##: Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. def apply(label: String, attributes: List[XmlAttribute] = Nil, content: NodeContent = NodeContent.empty): Node

    Unsafe create a new XmlNode.Node

    Unsafe create a new XmlNode.Node

    Throws IllegalArgumentException If label is not a valid xml name or attributes and content are null.

    label

    Node label value. Must be valid and non-empty. See Xml.isValidXmlName

    attributes

    Not attributes, could be empty.

    content

    Node content.

    returns

    A new XmlNode.Node instance with the specified values

    Annotations
    @impure()
  5. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  6. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @IntrinsicCandidate() @native()
  7. lazy val emptyGroup: Group
  8. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  9. implicit val eqXmlNode: Eq[XmlNode]
    Definition Classes
    XmlNodeInstances
  10. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  11. def fromSeq(elements: Seq[XmlNode]): XmlNode
  12. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @IntrinsicCandidate() @native()
  13. def group(elements: Seq[XmlNode]): Group

    Create a new XmlNode.Group instance with the specified XmlNodes

    Create a new XmlNode.Group instance with the specified XmlNodes

    elements

    Group elements

    returns

    A new XmlNode.Group instance with the specified XmlNodes

  14. def group(node: XmlNode, nodeN: XmlNode*): Group

    Create a new XmlNode.Group instance with the specified XmlNodes

    Create a new XmlNode.Group instance with the specified XmlNodes

    node

    element

    nodeN

    other elements

    returns

    A new XmlNode.Group instance with the specified XmlNodes

  15. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @IntrinsicCandidate() @native()
  16. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  17. implicit val monoidXmlNodeGroup: kernel.Monoid[XmlNode]
    Definition Classes
    XmlNodeInstances
  18. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  19. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @IntrinsicCandidate() @native()
  20. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @IntrinsicCandidate() @native()
  21. def safeApply(label: String, attributes: List[XmlAttribute] = Nil, content: NodeContent = NodeContent.empty): Either[Throwable, Node]

    Safely create a new XmlNode.Node

    Safely create a new XmlNode.Node

    label

    Node label value. Must be valid and non-empty

    attributes

    Not attributes, could be empty.

    content

    Node content.

    returns

    A new XmlNode.Node instance with the specified values

  22. implicit def showXmlNode[T <: XmlNode](implicit printer: XmlPrinter, config: Config): Show[T]
    Definition Classes
    XmlNodeInstances
  23. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  24. def toString(): String
    Definition Classes
    AnyRef → Any
  25. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  26. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  27. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])

Deprecated Value Members

  1. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable]) @Deprecated
    Deprecated

    (Since version 9)

Inherited from XmlNodeSyntax

Inherited from XmlNodeInstances

Inherited from AnyRef

Inherited from Any

Ungrouped