trait PrefixedQName extends QName with CanHavePrefix with LeftLike[PrefixedQName, NoNamespaceQName]
Has both a namespace and a prefix (e.g. <pre:fred xmlns:pre="uri"/>)
- Alphabetic
- By Inheritance
- PrefixedQName
- LeftLike
- EitherLike
- LeftLikeProjection
- CanHavePrefix
- QName
- AnyRef
- Any
- Hide All
- Show All
- Public
- All
Abstract Value Members
-
abstract
val
local: String
- Definition Classes
- CanHavePrefix
-
abstract
val
namespace: Namespace
There is always a namespace, but it may be the noNamespace namespace
There is always a namespace, but it may be the noNamespace namespace
- Definition Classes
- CanHavePrefix
-
abstract
def
prefix: Option[String]
- Definition Classes
- CanHavePrefix
Concrete Value Members
-
final
def
!=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
##(): Int
- Definition Classes
- AnyRef → Any
-
def
=:=(other: QName): Boolean
Will match namespace and local with other but not prefix ==== also does prefix
Will match namespace and local with other but not prefix ==== also does prefix
- Definition Classes
- QName
-
final
def
==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
def
====(other: QName): Boolean
Will match namespace and local with other AND prefix if available
Will match namespace and local with other AND prefix if available
- Definition Classes
- QName
-
final
def
asInstanceOf[T0]: T0
- Definition Classes
- Any
-
def
clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( ... ) @native()
-
final
def
eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
def
equals(other: Any): Boolean
Matches using =:= and does not work with === or prefixes
Matches using =:= and does not work with === or prefixes
- Definition Classes
- QName → AnyRef → Any
-
def
finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( classOf[java.lang.Throwable] )
-
final
def
fold[X](fl: (PrefixedQName) ⇒ X, fr: (NoNamespaceQName) ⇒ X): X
- Definition Classes
- LeftLike → EitherLike
- Annotations
- @inline()
-
final
def
get: PrefixedQName
- Definition Classes
- LeftLike → LeftLikeProjection
- Annotations
- @inline()
-
final
def
getClass(): Class[_]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
-
final
def
getLeft: PrefixedQName
- Definition Classes
- LeftLike → EitherLike
- Annotations
- @inline()
-
final
def
getRight: NoNamespaceQName
- Definition Classes
- LeftLike → EitherLike
- Annotations
- @inline()
-
def
hasPrefix: Boolean
- Definition Classes
- QName
-
def
hashCode(): Int
- Definition Classes
- QName → AnyRef → Any
-
final
def
isInstanceOf[T0]: Boolean
- Definition Classes
- Any
-
final
def
isLeft: Boolean
- Definition Classes
- LeftLike → EitherLike
- Annotations
- @inline()
-
final
def
isRight: Boolean
- Definition Classes
- LeftLike → EitherLike
- Annotations
- @inline()
-
final
def
left: LeftLikeProjection[PrefixedQName]
- Definition Classes
- LeftLike → EitherLike
- Annotations
- @inline()
-
final
def
ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
final
def
notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
-
final
def
notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
-
def
pqName: String
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.
- Definition Classes
- QName
-
def
qName: String
local or prefix:local Namespaces QName, also XPath 2.0 functions version of a qualified name
local or prefix:local Namespaces QName, also XPath 2.0 functions version of a qualified name
- Definition Classes
- QName
-
def
qNameVersion: XmlVersion
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
- Definition Classes
- QName
-
def
qualifiedName: String
QName, {namespace}localName JClark representation, as per everywhere else than w3c
QName, {namespace}localName JClark representation, as per everywhere else than w3c
- Definition Classes
- QName
-
final
def
right: RightLikeProjection[NoNamespaceQName]
- Definition Classes
- LeftLike → EitherLike
- Annotations
- @inline()
-
final
def
synchronized[T0](arg0: ⇒ T0): T0
- Definition Classes
- AnyRef
-
def
toString(): String
- Definition Classes
- QName → AnyRef → Any
-
final
def
wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... ) @native()
-
def
withPrefix(prefix: String)(implicit ver: XmlVersion, fromParser: FromParser): PrefixedQName
- Definition Classes
- CanHavePrefix