scala.xml.dtd

Scanner

class Scanner extends Tokens with TokenTests

Scanner for regexps (content models in DTD element declarations) todo: cleanup

Source
Scanner.scala
Linear Supertypes
Known Subclasses
Type Hierarchy Learn more about scaladoc diagrams
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. Scanner
  2. TokenTests
  3. Tokens
  4. AnyRef
  5. 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 Scanner()

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 Scanner to StringAdd[Scanner] performed by method StringAdd in scala.Predef.
    Definition Classes
    StringAdd
  5. def ->[B](y: B): (Scanner, B)

    Implicit information
    This member is added by an implicit conversion from Scanner to ArrowAssoc[Scanner] 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 val CHOICE: Int(9)

    Definition Classes
    Tokens
  9. final val COMMA: Int(5)

    Definition Classes
    Tokens
  10. final val END: Int(10)

    Definition Classes
    Tokens
  11. final val ENDCH: Char('\00')

  12. final val LPAREN: Int(3)

    Definition Classes
    Tokens
  13. final val NAME: Int(1)

    Definition Classes
    Tokens
  14. final val OPT: Int(8)

    Definition Classes
    Tokens
  15. final val PLUS: Int(7)

    Definition Classes
    Tokens
  16. final val RPAREN: Int(4)

    Definition Classes
    Tokens
  17. final val S: Int(13)

    Definition Classes
    Tokens
  18. final val STAR: Int(6)

    Definition Classes
    Tokens
  19. final val TOKEN_PCDATA: Int(0)

    Definition Classes
    Tokens
  20. final def acc(d: Char): Unit

  21. final def accS(ds: Seq[Char]): Unit

  22. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  23. def checkPubID(s: String): Boolean

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

    Definition Classes
    TokenTests
  25. def clone(): AnyRef

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

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

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

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

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

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

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

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

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

    Definition Classes
    AnyRef → Any
  36. final def initScanner(s: String): Unit

    initializes the scanner on input s

  37. 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
  38. def isAlphaDigit(c: Char): Boolean

    Definition Classes
    TokenTests
  39. final def isIdentChar: Boolean

  40. final def isInstanceOf[T0]: Boolean

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

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

    See [5] of XML 1.0 specification.

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

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

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

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

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

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

    (#x20 | #x9 | #xD | #xA)
    Definition Classes
    TokenTests
  47. 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
  48. final def name: Int

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

    Definition Classes
    AnyRef
  50. final def next(): Unit

  51. final def nextToken(): Unit

    scans the next token

  52. final def notify(): Unit

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

    Definition Classes
    AnyRef
  54. final def readToken: Int

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

    Definition Classes
    AnyRef
  56. def toString(): String

    Definition Classes
    AnyRef → Any
  57. var token: Int

  58. final def token2string(i: Int): String

    Definition Classes
    Tokens
  59. var value: String

  60. final def wait(): Unit

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

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

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

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

Inherited from TokenTests

Inherited from Tokens

Inherited from AnyRef

Inherited from Any

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

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

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

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

Ungrouped