Trait

scales.xml

QName

Related Doc: package xml

Permalink

sealed trait QName extends AnyRef

QNames together with a tree structure form the basis of XML, what type of QName is available depends on Attribute (either no namespace or prefxied - fully qualified) or Elem (attribute's options and non prefixed but still qualified)

Linear Supertypes
AnyRef, Any
Known Subclasses
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. QName
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Abstract Value Members

  1. abstract val local: String

    Permalink
  2. abstract def namespace: UnderlyingNamespace

    Permalink

    There is always a namespace, but it may be the noNamespace namespace

  3. abstract def prefix: Option[String]

    Permalink

Concrete Value Members

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

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. def =:=(other: QName): Boolean

    Permalink

    Will match namespace and local with other but not prefix ==== also does prefix

  4. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  5. def ====(other: QName): Boolean

    Permalink

    Will match namespace and local with other AND prefix if available

  6. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  7. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  8. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  9. def equals(other: Any): Boolean

    Permalink

    Matches using =:= and does not work with === or prefixes

    Matches using =:= and does not work with === or prefixes

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

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

    Permalink
    Definition Classes
    AnyRef → Any
  12. def hasPrefix: Boolean

    Permalink
  13. def hashCode(): Int

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

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

    Permalink
    Definition Classes
    AnyRef
  16. final def notify(): Unit

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

    Permalink
    Definition Classes
    AnyRef
  18. def pqName: String

    Permalink

    QName, pre:{namespace}localName JClark representation with prefix: on the front if it has a prefix.

    QName, pre:{namespace}localName JClark representation with prefix: on the front if it has a prefix. CTw's own, for when you just really want that prefix.

  19. def qName: String

    Permalink

    local or prefix:local Namespaces QName, also XPath 2.0 functions version of a qualified name

  20. def qNameVersion: XmlVersion

    Permalink

    When the version is 1.1 it cannot be serialized to a 1.0 doc.

    When the version is 1.1 it cannot be serialized to a 1.0 doc. This indicates with which version it is compatible

  21. def qualifiedName: String

    Permalink

    QName, {namespace}localName JClark representation, as per everywhere else than w3c

  22. final def synchronized[T0](arg0: ⇒ T0): T0

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

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

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

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

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

Inherited from AnyRef

Inherited from Any

Ungrouped