com.codecommit.antixml

Group

object Group

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. Group
  2. AnyRef
  3. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Value Members

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

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

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

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

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

    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. final def asInstanceOf[T0]: T0

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

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

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

    Creates instances of com.codecommit.antixml.CanBuildFromWithZipper for com.codecommit.antixml.Group types.

  10. def clone(): AnyRef

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

    returns

    An empty com.codecommit.antixml.Group with the given parameter type.

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

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

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

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  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. final def getClass(): Class[_]

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

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

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

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

  21. final def notify(): Unit

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

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

    Definition Classes
    AnyRef
  24. def toString(): String

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

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from AnyRef

Inherited from Any

Ungrouped