eu.cdevreeze.yaidom.simple

Document

object Document extends Serializable

Linear Supertypes
Serializable, Serializable, AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. Document
  2. Serializable
  3. Serializable
  4. AnyRef
  5. 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(documentElement: Elem): Document

    Creates a Document from only the document element.

    Creates a Document from only the document element. The URI is empty, and so are the collections of top-level comments and processing instructions.

  7. def apply(uriOption: Option[URI], documentElement: Elem): Document

    Creates a Document from only the document element and optional URI.

    Creates a Document from only the document element and optional URI. The collections of top-level comments and processing instructions are empty, and the optional XML declaration is absent.

  8. def apply(uriOption: Option[URI], xmlDeclarationOption: Option[XmlDeclaration], documentElement: Elem, processingInstructions: IndexedSeq[ProcessingInstruction] = immutable.IndexedSeq(), comments: IndexedSeq[Comment] = immutable.IndexedSeq()): Document

    Creates a Document from an optional URI, an optional XML declaration, the document element, and the top-level comments and processing instructions, if any.

    Creates a Document from an optional URI, an optional XML declaration, the document element, and the top-level comments and processing instructions, if any. Unlike the primary constructor, this factory method defaults the processing instructions and comments to empty collections. In other words, only the optional URI and the document element are mandatory parameters.

  9. def apply(uriOption: Option[URI], xmlDeclarationOption: Option[XmlDeclaration], children: IndexedSeq[CanBeDocumentChild]): Document

    Creates a Document from an optional URI, an optional XML declaration, and the document children.

    Creates a Document from an optional URI, an optional XML declaration, and the document children. Precisely one of the document children must be an element. This factory method retains the order of document children, whether any comments are before or after the root element.

  10. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  11. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  12. def document(uriOption: Option[String] = None, xmlDeclarationOption: Option[XmlDeclaration], documentElement: Elem, processingInstructions: IndexedSeq[ProcessingInstruction] = Vector(), comments: IndexedSeq[Comment] = Vector()): Document

  13. def document(uriOption: Option[String], xmlDeclarationOption: Option[XmlDeclaration], children: IndexedSeq[CanBeDocumentChild]): Document

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

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

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

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

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

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

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

    Definition Classes
    AnyRef
  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 Serializable

Inherited from Serializable

Inherited from AnyRef

Inherited from Any

Ungrouped