Object

io.prophecy.abinitio.dml

pSchemaLexer

Related Doc: package dml

Permalink

object pSchemaLexer extends RegexParsers

Linear Supertypes
RegexParsers, Parsers, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. pSchemaLexer
  2. RegexParsers
  3. Parsers
  4. AnyRef
  5. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Type Members

  1. type Elem = Char

    Permalink
    Definition Classes
    RegexParsers → Parsers
  2. case class Error extends NoSuccess with Product with Serializable

    Permalink
    Definition Classes
    Parsers
  3. case class Failure extends NoSuccess with Product with Serializable

    Permalink
    Definition Classes
    Parsers
  4. type Input = Reader[Elem]

    Permalink
    Definition Classes
    Parsers
  5. sealed abstract class NoSuccess extends ParseResult[Nothing]

    Permalink
    Definition Classes
    Parsers
  6. trait OnceParser[+T] extends Parser[T]

    Permalink
    Definition Classes
    Parsers
  7. sealed abstract class ParseResult[+T] extends AnyRef

    Permalink
    Definition Classes
    Parsers
  8. abstract class Parser[+T] extends (Input) ⇒ ParseResult[T]

    Permalink
    Definition Classes
    Parsers
  9. case class Success[+T] extends ParseResult[T] with Product with Serializable

    Permalink
    Definition Classes
    Parsers
  10. case class ~[+a, +b] extends Product with Serializable

    Permalink
    Definition Classes
    Parsers

Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  4. object NoSuccess

    Permalink
    Definition Classes
    Parsers
  5. def OnceParser[T](f: (Input) ⇒ ParseResult[T]): Parser[T] with OnceParser[T]

    Permalink
    Definition Classes
    Parsers
  6. def Parser[T](f: (Input) ⇒ ParseResult[T]): Parser[T]

    Permalink
    Definition Classes
    Parsers
  7. def accept[U](expected: String, f: PartialFunction[Elem, U]): Parser[U]

    Permalink
    Definition Classes
    Parsers
  8. def accept[ES](es: ES)(implicit f: (ES) ⇒ List[Elem]): Parser[List[Elem]]

    Permalink
    Definition Classes
    Parsers
  9. implicit def accept(e: Elem): Parser[Elem]

    Permalink
    Definition Classes
    Parsers
  10. def acceptIf(p: (Elem) ⇒ Boolean)(err: (Elem) ⇒ String): Parser[Elem]

    Permalink
    Definition Classes
    Parsers
  11. def acceptMatch[U](expected: String, f: PartialFunction[Elem, U]): Parser[U]

    Permalink
    Definition Classes
    Parsers
  12. def acceptSeq[ES](es: ES)(implicit f: (ES) ⇒ Iterable[Elem]): Parser[List[Elem]]

    Permalink
    Definition Classes
    Parsers
  13. def apply(code: String): Either[pSchemaLexerError, List[SchemaToken]]

    Permalink
  14. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  15. def ascii: Parser[ASCII]

    Permalink
  16. def begin: Parser[BEGIN]

    Permalink
  17. def bigendian: Parser[BIGENDIAN]

    Permalink
  18. def bigint: Parser[BIGINT]

    Permalink
  19. def cBrace: Parser[CBRACE]

    Permalink
  20. def cBrack: Parser[CBRACK]

    Permalink
  21. def cParen: Parser[CPAREN]

    Permalink
  22. def century: Parser[CENTURY]

    Permalink
  23. def chainl1[T, U](first: ⇒ Parser[T], p: ⇒ Parser[U], q: ⇒ Parser[(T, U) ⇒ T]): Parser[T]

    Permalink
    Definition Classes
    Parsers
  24. def chainl1[T](p: ⇒ Parser[T], q: ⇒ Parser[(T, T) ⇒ T]): Parser[T]

    Permalink
    Definition Classes
    Parsers
  25. def chainr1[T, U](p: ⇒ Parser[T], q: ⇒ Parser[(T, U) ⇒ U], combine: (T, U) ⇒ U, first: U): Parser[U]

    Permalink
    Definition Classes
    Parsers
  26. def charset: Parser[CHARSET]

    Permalink
  27. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @HotSpotIntrinsicCandidate() @throws( ... )
  28. def colon: Parser[COLON]

    Permalink
  29. def comma: Parser[COMMA]

    Permalink
  30. def commit[T](p: ⇒ Parser[T]): Parser[T]

    Permalink
    Definition Classes
    Parsers
  31. def date: Parser[DATE]

    Permalink
  32. def datetime: Parser[DATETIME]

    Permalink
  33. def decimal: Parser[DECIMAL]

    Permalink
  34. def dollar: Parser[DOLLAR]

    Permalink
  35. def dot: Parser[DOT]

    Permalink
  36. def double: Parser[DOUBLE]

    Permalink
  37. def ebcdic: Parser[EBCDIC]

    Permalink
  38. def elem(e: Elem): Parser[Elem]

    Permalink
    Definition Classes
    Parsers
  39. def elem(kind: String, p: (Elem) ⇒ Boolean): Parser[Elem]

    Permalink
    Definition Classes
    Parsers
  40. def end: Parser[END]

    Permalink
  41. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  42. def equals: Parser[EQUALS]

    Permalink
  43. def equals(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  44. def err(msg: String): Parser[Nothing]

    Permalink
    Definition Classes
    Parsers
  45. def failure(msg: String): Parser[Nothing]

    Permalink
    Definition Classes
    Parsers
  46. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
    Annotations
    @HotSpotIntrinsicCandidate()
  47. def greaterThan: Parser[GREATER_THAN]

    Permalink
  48. def guard[T](p: ⇒ Parser[T]): Parser[T]

    Permalink
    Definition Classes
    Parsers
  49. def handleWhiteSpace(source: CharSequence, offset: Int): Int

    Permalink
    Attributes
    protected
    Definition Classes
    RegexParsers
  50. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
    Annotations
    @HotSpotIntrinsicCandidate()
  51. def identifier1: Parser[IDENTIFIER]

    Permalink

    Matches identifiers that start with literal and contain extra characters.

    Matches identifiers that start with literal and contain extra characters.

    The positive and negative lookahead at the beginning prevents the datetime from being matched as a date literal with an additional string "time".

    E.g. "datetime_a(" - Match, "datetime(" - Reject, "dateeeetime(" - Match, "string_a(" - Match, "string(" - Reject

  52. def identifier2: Parser[IDENTIFIER]

    Permalink
  53. def int: Parser[INT]

    Permalink
  54. def integer: Parser[INTEGER]

    Permalink
  55. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  56. def isoLatin: Parser[ISO_LATIN]

    Permalink
  57. val keyword: String

    Permalink
  58. def literal: Parser[LITERAL]

    Permalink
  59. implicit def literal(s: String): Parser[String]

    Permalink
    Definition Classes
    RegexParsers
  60. def littleEndian: Parser[LITTLE_ENDIAN]

    Permalink
  61. def log[T](p: ⇒ Parser[T])(name: String): Parser[T]

    Permalink
    Definition Classes
    Parsers
  62. def long: Parser[LONG]

    Permalink
  63. def maxLen: Parser[MAX_LEN]

    Permalink
  64. def metadata: Parser[METADATA]

    Permalink
  65. def mkList[T]: (~[T, List[T]]) ⇒ List[T]

    Permalink
    Definition Classes
    Parsers
  66. def multiLineComment: Parser[COMMENT]

    Permalink

    Regex identifies comments starting with /* and ending with */ and spanning multiple lines as well.

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

    Permalink
    Definition Classes
    AnyRef
  68. def not[T](p: ⇒ Parser[T]): Parser[Unit]

    Permalink
    Definition Classes
    Parsers
  69. def notOp1: Parser[NOT_OP1]

    Permalink
  70. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @HotSpotIntrinsicCandidate()
  71. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @HotSpotIntrinsicCandidate()
  72. def oBrace: Parser[OBRACE]

    Permalink
  73. def oBrack: Parser[OBRACK]

    Permalink
  74. def oParen: Parser[OPAREN]

    Permalink
  75. def opt[T](p: ⇒ Parser[T]): Parser[Option[T]]

    Permalink
    Definition Classes
    Parsers
  76. def packed: Parser[PACKED]

    Permalink
  77. def parse[T](p: Parser[T], in: Reader): ParseResult[T]

    Permalink
    Definition Classes
    RegexParsers
  78. def parse[T](p: Parser[T], in: CharSequence): ParseResult[T]

    Permalink
    Definition Classes
    RegexParsers
  79. def parse[T](p: Parser[T], in: Reader[Char]): ParseResult[T]

    Permalink
    Definition Classes
    RegexParsers
  80. def parseAll[T](p: Parser[T], in: CharSequence): ParseResult[T]

    Permalink
    Definition Classes
    RegexParsers
  81. def parseAll[T](p: Parser[T], in: Reader): ParseResult[T]

    Permalink
    Definition Classes
    RegexParsers
  82. def parseAll[T](p: Parser[T], in: Reader[Char]): ParseResult[T]

    Permalink
    Definition Classes
    RegexParsers
  83. def phrase[T](p: Parser[T]): Parser[T]

    Permalink
    Definition Classes
    RegexParsers → Parsers
  84. def positioned[T <: Positional](p: ⇒ Parser[T]): Parser[T]

    Permalink
    Definition Classes
    RegexParsers → Parsers
  85. def questionMark: Parser[QUESTION_MARK]

    Permalink
  86. def real: Parser[REAL]

    Permalink
  87. def record: Parser[RECORD]

    Permalink
  88. implicit def regex(r: Regex): Parser[String]

    Permalink
    Definition Classes
    RegexParsers
  89. def rep[T](p: ⇒ Parser[T]): Parser[List[T]]

    Permalink
    Definition Classes
    Parsers
  90. def rep1[T](first: ⇒ Parser[T], p0: ⇒ Parser[T]): Parser[List[T]]

    Permalink
    Definition Classes
    Parsers
    Annotations
    @migration
    Migration

    (Changed in version 2.9.0) The p0 call-by-name arguments is evaluated at most once per constructed Parser object, instead of on every need that arises during parsing.

  91. def rep1[T](p: ⇒ Parser[T]): Parser[List[T]]

    Permalink
    Definition Classes
    Parsers
  92. def rep1sep[T](p: ⇒ Parser[T], q: ⇒ Parser[Any]): Parser[List[T]]

    Permalink
    Definition Classes
    Parsers
  93. def repN[T](num: Int, p: ⇒ Parser[T]): Parser[List[T]]

    Permalink
    Definition Classes
    Parsers
  94. def repsep[T](p: ⇒ Parser[T], q: ⇒ Parser[Any]): Parser[List[T]]

    Permalink
    Definition Classes
    Parsers
  95. def semi: Parser[SEMICOLON]

    Permalink
  96. def signReserved: Parser[SIGN_RESERVED]

    Permalink
  97. def signed: Parser[SIGNED]

    Permalink
  98. def singleLineComment: Parser[COMMENT]

    Permalink

    Below Regex identifies comments starting with // till the end of line.

  99. def skipWhitespace: Boolean

    Permalink
    Definition Classes
    pSchemaLexer → RegexParsers
  100. def string: Parser[STRING]

    Permalink
  101. def success[T](v: T): Parser[T]

    Permalink
    Definition Classes
    Parsers
  102. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  103. def theElse: Parser[ELSE]

    Permalink
  104. def theIf: Parser[IF]

    Permalink
  105. def theNull: Parser[NULL]

    Permalink
  106. def theType: Parser[TYPE]

    Permalink
  107. def timestamp: Parser[TIMESTAMP]

    Permalink
  108. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  109. def tokens: Parser[List[SchemaToken]]

    Permalink
  110. def unicode: Parser[UNICODE]

    Permalink
  111. def union: Parser[UNION]

    Permalink
  112. def unsigned: Parser[UNSIGNED]

    Permalink
  113. def utf8: Parser[UTF8]

    Permalink
  114. def varchar: Parser[VARCHAR]

    Permalink
  115. def vector: Parser[VECTOR]

    Permalink
  116. def void: Parser[VOID]

    Permalink
  117. final def wait(arg0: Long, arg1: Int): Unit

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  119. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  120. val whiteSpace: Regex

    Permalink
    Definition Classes
    pSchemaLexer → RegexParsers
  121. def zerofill: Parser[ZEROFILL]

    Permalink
  122. def zoned: Parser[ZONED]

    Permalink

Deprecated Value Members

  1. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @Deprecated @deprecated @throws( classOf[java.lang.Throwable] )
    Deprecated

    (Since version ) see corresponding Javadoc for more information.

Inherited from RegexParsers

Inherited from Parsers

Inherited from AnyRef

Inherited from Any

Ungrouped