Object/Class

com.codecommit.antixml

Group

Related Docs: class Group | package antixml

Permalink

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
Visibility
  1. Public
  2. All

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 apply[A <: Node](nodes: A*): Group[A]

    Permalink

    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.

  5. final def asInstanceOf[T0]: T0

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

    Permalink

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

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

    Permalink

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

  8. def clone(): AnyRef

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

    Permalink

    returns

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

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

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

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

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  13. def fromSeq[A <: Node](seq: Seq[A]): Group[A]

    Permalink

    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.

  14. final def getClass(): Class[_]

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

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

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

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

    Permalink
  19. final def notify(): Unit

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

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

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

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

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

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

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

Inherited from AnyRef

Inherited from Any

Ungrouped