com.codecommit.antixml

Group

object Group extends AnyRef

Factory singleton for Group. This object is primarily used for creating new Group(s) from specified nodes.

Source
Group.scala
Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. Hide All
  2. Show all
  1. Group
  2. AnyRef
  3. Any
Visibility
  1. Public
  2. All

Value Members

  1. def != (arg0: AnyRef): Boolean

    Attributes
    final
    Definition Classes
    AnyRef
  2. def != (arg0: Any): Boolean

    Attributes
    final
    Definition Classes
    Any
  3. def ## (): Int

    Attributes
    final
    Definition Classes
    AnyRef → Any
  4. def == (arg0: AnyRef): Boolean

    Attributes
    final
    Definition Classes
    AnyRef
  5. def == (arg0: Any): Boolean

    Attributes
    final
    Definition Classes
    Any
  6. def apply [A <: Node] (nodes: A*): Group[A]

    Builds a new group with the specified set of nodes in order.

    Builds a new group with the specified set of nodes in order. The most specific group type possible is selected (e.g. Group[Elem]). This method delegates to the fromSeq method.

  7. def asInstanceOf [T0] : T0

    Attributes
    final
    Definition Classes
    Any
  8. implicit def canBuildFromDeep [A <: Node] : CanBuildFrom[Traversable[_], A, Group[A]]

    Provides a scala.collection.generic.CanBuildFrom instance which mixes in CanProduceZipper

    Provides a scala.collection.generic.CanBuildFrom instance which mixes in CanProduceZipper

    Attributes
    implicit
  9. implicit def canBuildFromWithZipper [A <: Node] : CanBuildFromWithZipper[Traversable[_], A, Zipper[A]]

    Creates instances of CanBuildFromWithZipper for Group types.

    Creates instances of CanBuildFromWithZipper for Group types.

    Attributes
    implicit
  10. def clone (): AnyRef

    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws()
  11. def empty [A <: Node] : Group[A]

    returns

    An empty Group with the given parameter type.

  12. def eq (arg0: AnyRef): Boolean

    Attributes
    final
    Definition Classes
    AnyRef
  13. def equals (arg0: Any): Boolean

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

    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws()
  15. def fromSeq [A <: Node] (seq: Seq[A]): Group[A]

    Builds a new group with the specified set of nodes in order.

    Builds a new group with the specified set of nodes in order. The most specific group type possible is selected (e.g. Group[Elem]). If the given Seq has the runtime type of scala.collection.immutable.Vector, then no copying will be performed and the resulting Group will be a simple wrapper around the specified Vector. However, if the Seq has any other runtime type, its contents will be copied into a new Vector internal to the resulting Group. This design makes it impossible to accidentally leak a mutable data structure into an XML tree. If the performance implications of the copy operation prove prohibitive, then you must attempt to ensure that the sequences you pass to this method are always of type Vector, since this will avoid the penalty.

  16. def getClass (): java.lang.Class[_]

    Attributes
    final
    Definition Classes
    AnyRef
  17. def hashCode (): Int

    Definition Classes
    AnyRef → Any
  18. def isInstanceOf [T0] : Boolean

    Attributes
    final
    Definition Classes
    Any
  19. def ne (arg0: AnyRef): Boolean

    Attributes
    final
    Definition Classes
    AnyRef
  20. def newBuilder [A <: Node] : Builder[A, Group[A]]

  21. def notify (): Unit

    Attributes
    final
    Definition Classes
    AnyRef
  22. def notifyAll (): Unit

    Attributes
    final
    Definition Classes
    AnyRef
  23. def synchronized [T0] (arg0: ⇒ T0): T0

    Attributes
    final
    Definition Classes
    AnyRef
  24. def toString (): String

    Definition Classes
    AnyRef → Any
  25. def wait (): Unit

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

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

    Attributes
    final
    Definition Classes
    AnyRef
    Annotations
    @throws()

Inherited from AnyRef

Inherited from Any