Packages

c

scala.xml.dtd

Scanner

class Scanner extends Tokens with TokenTests

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

Annotations
@deprecated
Deprecated

(Since version 1.3.0) This class will be removed

Linear Supertypes
Known Subclasses
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Scanner
  2. TokenTests
  3. Tokens
  4. AnyRef
  5. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new Scanner()

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. final val CHOICE: Int(9)
    Definition Classes
    Tokens
  5. final val COMMA: Int(5)
    Definition Classes
    Tokens
  6. final val END: Int(10)
    Definition Classes
    Tokens
  7. final val ENDCH: Char('\u0000')
  8. final val LPAREN: Int(3)
    Definition Classes
    Tokens
  9. final val NAME: Int(1)
    Definition Classes
    Tokens
  10. final val OPT: Int(8)
    Definition Classes
    Tokens
  11. final val PLUS: Int(7)
    Definition Classes
    Tokens
  12. final val RPAREN: Int(4)
    Definition Classes
    Tokens
  13. final val S: Int(13)
    Definition Classes
    Tokens
  14. final val STAR: Int(6)
    Definition Classes
    Tokens
  15. final val TOKEN_PCDATA: Int(0)
    Definition Classes
    Tokens
  16. final def acc(d: Char): Unit
  17. final def accS(ds: collection.Seq[Char]): Unit
  18. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  19. def checkPubID(s: String): Boolean
    Definition Classes
    TokenTests
  20. def checkSysID(s: String): Boolean
    Definition Classes
    TokenTests
  21. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native() @HotSpotIntrinsicCandidate()
  22. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  23. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  24. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  25. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  26. final def initScanner(s: String): Unit

    initializes the scanner on input s

  27. 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
  28. def isAlphaDigit(c: Char): Boolean
    Definition Classes
    TokenTests
  29. final def isIdentChar: Boolean
  30. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  31. def isName(s: String): Boolean

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

    See [5] of XML 1.0 specification.

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

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

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

    Definition Classes
    TokenTests
  33. 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 [4] and Appendix B of XML 1.0 specification

    Definition Classes
    TokenTests
  34. def isPubIDChar(ch: Char): Boolean
    Definition Classes
    TokenTests
  35. final def isSpace(cs: collection.Seq[Char]): Boolean

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

    (#x20 | #x9 | #xD | #xA)
    Definition Classes
    TokenTests
  37. def isValidIANAEncoding(ianaEncoding: collection.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
  38. final def name: Int
  39. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  40. final def next(): Unit
  41. final def nextToken(): Unit

    scans the next token

  42. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  43. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  44. final def readToken: Int
  45. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  46. def toString(): String
    Definition Classes
    AnyRef → Any
  47. var token: Int
  48. final def token2string(i: Int): String
    Definition Classes
    Tokens
  49. var value: String
  50. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  51. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  52. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])

Deprecated Value Members

  1. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable]) @Deprecated @deprecated
    Deprecated

    (Since version ) see corresponding Javadoc for more information.

Inherited from TokenTests

Inherited from Tokens

Inherited from AnyRef

Inherited from Any

Ungrouped