scala.xml.dtd

PublicID

case class PublicID(publicId: String, systemId: String) extends ExternalID with Product with Serializable

a public identifier (see http://www.w3.org/QA/2002/04/valid-dtd-list.html).

publicId

the public identifier literal

systemId

(can be null for notation pubIDs) 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. PublicID
  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 PublicID(publicId: String, systemId: String)

    publicId

    the public identifier literal

    systemId

    (can be null for notation pubIDs) 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 PublicID to StringAdd[PublicID] performed by method StringAdd in scala.Predef.
    Definition Classes
    StringAdd
  5. def ->[B](y: B): (PublicID, B)

    Implicit information
    This member is added by an implicit conversion from PublicID to ArrowAssoc[PublicID] 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 attribute: MetaData

    always empty

  10. def buildString(sb: StringBuilder): StringBuilder

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

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

    Definition Classes
    TokenTests
  13. def child: collection.immutable.Nil.type

    always empty

  14. def clone(): AnyRef

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

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

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

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

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

    Definition Classes
    AnyRef
  20. def finalize(): Unit

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  21. 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 PublicID to StringFormat[PublicID] performed by method StringFormat in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @inline()
  22. final def getClass(): Class[_]

    Definition Classes
    AnyRef → Any
  23. 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
  24. def isAlphaDigit(c: Char): Boolean

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

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

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

    See [5] of XML 1.0 specification.

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

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

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

    Definition Classes
    TokenTests
  28. 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
  29. def isPubIDChar(ch: Char): Boolean

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

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

    (#x20 | #x9 | #xD | #xA)
    Definition Classes
    TokenTests
  32. 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
  33. def label: String

    the constant "#PI"

  34. final def ne(arg0: AnyRef): Boolean

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

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

    Definition Classes
    AnyRef
  37. val publicId: String

    the public identifier literal

    the public identifier literal

    Definition Classes
    PublicIDExternalID
  38. def quoted(s: String): String

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

    Definition Classes
    AnyRef
  40. val systemId: String

    (can be null for notation pubIDs) the system identifier literal

    (can be null for notation pubIDs) the system identifier literal

    Definition Classes
    PublicIDExternalID
  41. def toString(): String

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

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

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

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

    Implicit information
    This member is added by an implicit conversion from PublicID to ArrowAssoc[PublicID] 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 PublicID to StringAdd[PublicID]

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

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

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

Ungrouped