scala.xml.dtd

SystemID

case class SystemID(systemId: String) extends ExternalID with Product with Serializable

a system identifier

systemId

the system identifier literal

Source
ExternalID.scala
Linear Supertypes
Serializable, java.io.Serializable, Product, Equals, ExternalID, TokenTests, AnyRef, Any
Type Hierarchy Learn more about scaladoc diagrams
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. SystemID
  2. Serializable
  3. Serializable
  4. Product
  5. Equals
  6. ExternalID
  7. TokenTests
  8. AnyRef
  9. Any
Implicitly
  1. by StringAdd
  2. by StringFormat
  3. by Ensuring
  4. by ArrowAssoc
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Instance Constructors

  1. new SystemID(systemId: String)

    systemId

    the system identifier literal

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. def +(other: String): String

    Implicit information
    This member is added by an implicit conversion from SystemID to StringAdd[SystemID] performed by method StringAdd in scala.Predef.
    Definition Classes
    StringAdd
  5. def ->[B](y: B): (SystemID, B)

    Implicit information
    This member is added by an implicit conversion from SystemID to ArrowAssoc[SystemID] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @inline()
  6. final def ==(arg0: AnyRef): Boolean

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

    Definition Classes
    Any
  8. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  9. def buildString(sb: StringBuilder): StringBuilder

    Definition Classes
    ExternalID
  10. def checkPubID(s: String): Boolean

    Definition Classes
    TokenTests
  11. def checkSysID(s: String): Boolean

    Definition Classes
    TokenTests
  12. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws()
  13. def ensuring(cond: (SystemID) ⇒ Boolean, msg: ⇒ Any): SystemID

    Implicit information
    This member is added by an implicit conversion from SystemID to Ensuring[SystemID] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  14. def ensuring(cond: (SystemID) ⇒ Boolean): SystemID

    Implicit information
    This member is added by an implicit conversion from SystemID to Ensuring[SystemID] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  15. def ensuring(cond: Boolean, msg: ⇒ Any): SystemID

    Implicit information
    This member is added by an implicit conversion from SystemID to Ensuring[SystemID] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  16. def ensuring(cond: Boolean): SystemID

    Implicit information
    This member is added by an implicit conversion from SystemID to Ensuring[SystemID] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  17. final def eq(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  18. def finalize(): Unit

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws()
  19. def formatted(fmtstr: String): String

    Returns string formatted according to given format string.

    Returns string formatted according to given format string. Format strings are as for String.format (@see java.lang.String.format).

    Implicit information
    This member is added by an implicit conversion from SystemID to StringFormat[SystemID] performed by method StringFormat in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @inline()
  20. final def getClass(): Class[_]

    Definition Classes
    AnyRef → Any
  21. def isAlpha(c: Char): Boolean

    These are 99% sure to be redundant but refactoring on the safe side.

    These are 99% sure to be redundant but refactoring on the safe side.

    Definition Classes
    TokenTests
  22. def isAlphaDigit(c: Char): Boolean

    Definition Classes
    TokenTests
  23. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  24. def isName(s: String): Boolean

    Name ::= ( Letter | '_' ) (NameChar)*

    See [5] of XML 1.0 specification.

    Definition Classes
    TokenTests
  25. def isNameChar(ch: Char): Boolean

    NameChar ::= Letter | Digit | '.' | '-' | '_' | ':'
    | CombiningChar | Extender

    See [4] and Appendix B of XML 1.0 specification.

    Definition Classes
    TokenTests
  26. def isNameStart(ch: Char): Boolean

    NameStart ::= ( Letter | '_' )

    where Letter means in one of the Unicode general categories { Ll, Lu, Lo, Lt, Nl }.

    We do not allow a name to start with :. See [3] and Appendix B of XML 1.0 specification

    Definition Classes
    TokenTests
  27. def isPubIDChar(ch: Char): Boolean

    Definition Classes
    TokenTests
  28. final def isSpace(cs: Seq[Char]): Boolean

    (#x20 | #x9 | #xD | #xA)+
    Definition Classes
    TokenTests
  29. final def isSpace(ch: Char): Boolean

    (#x20 | #x9 | #xD | #xA)
    Definition Classes
    TokenTests
  30. def isValidIANAEncoding(ianaEncoding: Seq[Char]): Boolean

    Returns true if the encoding name is a valid IANA encoding.

    Returns true if the encoding name is a valid IANA encoding. This method does not verify that there is a decoder available for this encoding, only that the characters are valid for an IANA encoding name.

    ianaEncoding

    The IANA encoding name.

    Definition Classes
    TokenTests
  31. final def ne(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  32. final def notify(): Unit

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

    Definition Classes
    AnyRef
  34. val publicId: scala.Null

    Definition Classes
    SystemIDExternalID
  35. def quoted(s: String): String

    Definition Classes
    ExternalID
  36. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  37. val systemId: String

    the system identifier literal

    the system identifier literal

    Definition Classes
    SystemIDExternalID
  38. def toString(): String

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

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws()
  42. def [B](y: B): (SystemID, B)

    Implicit information
    This member is added by an implicit conversion from SystemID to ArrowAssoc[SystemID] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc

Inherited from Serializable

Inherited from java.io.Serializable

Inherited from Product

Inherited from Equals

Inherited from ExternalID

Inherited from TokenTests

Inherited from AnyRef

Inherited from Any

Inherited by implicit conversion StringAdd from SystemID to StringAdd[SystemID]

Inherited by implicit conversion StringFormat from SystemID to StringFormat[SystemID]

Inherited by implicit conversion Ensuring from SystemID to Ensuring[SystemID]

Inherited by implicit conversion ArrowAssoc from SystemID to ArrowAssoc[SystemID]

Ungrouped