org.wquery.parser

WQueryParsers

trait WQueryParsers extends RegexParsers

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

Type Members

  1. type Elem = Char

    Definition Classes
    RegexParsers → Parsers
  2. type Input = Reader[Elem]

    Definition Classes
    Parsers

Value Members

  1. def != (arg0: AnyRef): Boolean

    Attributes
    final
    Definition Classes
    AnyRef
  2. def != (arg0: Any): Boolean

    Attributes
    final
    Definition Classes
    Any
  3. def ## (): Int

    Attributes
    final
    Definition Classes
    AnyRef → Any
  4. def == (arg0: AnyRef): Boolean

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

    Attributes
    final
    Definition Classes
    Any
  6. def OnceParser [T] (f: (Input) ⇒ ParseResult[T]): Parser[T] with OnceParser[T]

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

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

    Definition Classes
    Parsers
  9. def accept [ES] (es: ES)(implicit arg0: (ES) ⇒ List[Elem]): Parser[List[Elem]]

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

    Attributes
    implicit
    Definition Classes
    Parsers
  11. def acceptIf (p: (Elem) ⇒ Boolean)(err: (Elem) ⇒ String): Parser[Elem]

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

    Definition Classes
    Parsers
  13. def acceptSeq [ES] (es: ES)(implicit arg0: (ES) ⇒ Iterable[Elem]): Parser[List[Elem]]

    Definition Classes
    Parsers
  14. def add_expr : Parser[Product with EvaluableExpr with Serializable]

  15. def alphaLit : Parser[String]

  16. def and_condition : Parser[AndExpr]

  17. def arc_expr : Parser[ArcExpr]

  18. def arc_expr_arg : Parser[ArcExprArgument]

  19. def arc_generator : Parser[ArcByArcExprReq]

  20. def asInstanceOf [T0] : T0

    Attributes
    final
    Definition Classes
    Any
  21. def assignment : Parser[Product with EvaluableExpr with Serializable]

  22. def assignment_op : Parser[String]

  23. def backQuotedString : Parser[String]

  24. def back_generator : Parser[ContextReferenceReq]

  25. def boolean_generator : Parser[AlgebraExpr]

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

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

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

    Definition Classes
    Parsers
  29. def clone (): AnyRef

    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws()
  30. def commit [T] (p: ⇒ Parser[T]): Parser[T]

    Definition Classes
    Parsers
  31. def comparison : Parser[BinaryConditionalExpr]

  32. def condition : Parser[Product with ConditionalExpr with Serializable]

  33. def dots : Parser[Int]

  34. def doubleQuotedString : Parser[String]

  35. def elem (e: Elem): Parser[Elem]

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

    Definition Classes
    Parsers
  37. def emission : Parser[EmissionExpr]

  38. def empty_set_generator : Parser[AlgebraExpr]

  39. def eq (arg0: AnyRef): Boolean

    Attributes
    final
    Definition Classes
    AnyRef
  40. def equals (arg0: Any): Boolean

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

    Definition Classes
    Parsers
  42. def expr : Parser[EvaluableExpr]

  43. def expr_generator : Parser[EvaluableExpr]

  44. def failure (msg: String): Parser[Nothing]

    Definition Classes
    Parsers
  45. def filter : Parser[OrExpr]

  46. def filter_generator : Parser[BooleanByFilterReq]

  47. def filter_trans : Parser[FilterTransformationExpr]

  48. def finalize (): Unit

    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws()
  49. def floatNum : Parser[Double]

  50. def float_generator : Parser[AlgebraExpr]

  51. def function_call_generator : Parser[FunctionExpr]

  52. def generator : Parser[EvaluableExpr]

  53. def generator_step : Parser[StepExpr]

  54. def getClass (): java.lang.Class[_]

    Attributes
    final
    Definition Classes
    AnyRef
  55. def guard [T] (p: ⇒ Parser[T]): Parser[T]

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

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

    Definition Classes
    AnyRef → Any
  58. def ifelse : Parser[IfElseExpr]

  59. def imp_expr : Parser[EvaluableExpr]

  60. def integerNum : Parser[Int]

  61. def integer_generator : Parser[AlgebraExpr]

  62. def intersect_expr : Parser[Product with EvaluableExpr with Serializable]

  63. def isInstanceOf [T0] : Boolean

    Attributes
    final
    Definition Classes
    Any
  64. def iterator : Parser[IteratorExpr]

  65. var lastNoSuccess : NoSuccess

    Definition Classes
    Parsers
  66. implicit def literal (s: String): Parser[String]

    Attributes
    implicit
    Definition Classes
    RegexParsers
  67. def log [T] (p: ⇒ Parser[T])(name: String): Parser[T]

    Definition Classes
    Parsers
  68. def merge : Parser[MergeExpr]

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

    Definition Classes
    Parsers
  70. def mul_expr : Parser[Product with EvaluableExpr with Serializable]

  71. def multipath_expr : Parser[EvaluableExpr]

  72. def ne (arg0: AnyRef): Boolean

    Attributes
    final
    Definition Classes
    AnyRef
  73. def node_trans : Parser[NodeTransformationExpr]

  74. def non_rel_expr_generator : Parser[EvaluableExpr]

  75. def not [T] (p: ⇒ Parser[T]): Parser[Unit]

    Definition Classes
    Parsers
  76. def notQuotedString : Parser[String]

  77. def not_condition : Parser[Product with ConditionalExpr with Serializable]

  78. def notify (): Unit

    Attributes
    final
    Definition Classes
    AnyRef
  79. def notifyAll (): Unit

    Attributes
    final
    Definition Classes
    AnyRef
  80. def opt [T] (p: ⇒ Parser[T]): Parser[Option[T]]

    Definition Classes
    Parsers
  81. def or_condition : Parser[OrExpr]

  82. def parse (input: String): EvaluableExpr

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

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

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

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

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

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

    Definition Classes
    RegexParsers
  89. def path : Parser[PathExpr]

  90. def path_var_decl : Parser[PathVariable]

  91. def phrase [T] (p: Parser[T]): Parser[T]

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

    Definition Classes
    RegexParsers → Parsers
  93. def projection : Parser[EvaluableExpr]

  94. def projection_trans : Parser[ProjectionTransformationExpr]

  95. def property_assignment : Parser[PropertyAssignmentExpr]

  96. def quantified_relation_expr : Parser[QuantifiedRelationExpr]

  97. def quantifier : Parser[Quantifier]

  98. def query : Parser[EvaluableExpr]

  99. def quotedString : Parser[String]

  100. def quoted_word_generator : Parser[Product with EvaluableExpr with Serializable]

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

    Attributes
    implicit
    Definition Classes
    RegexParsers
  102. def rel_expr_generator : Parser[ContextByRelationalExprReq]

  103. def relation_composition_expr : Parser[RelationCompositionExpr]

  104. def relation_trans : Parser[RelationTransformationExpr]

  105. def relation_union_expr : Parser[RelationalExpr]

  106. def rep [T] (p: ⇒ Parser[T]): Parser[List[T]]

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

    Definition Classes
    Parsers
    Annotations
    @migration
    Migration

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

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

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

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

    Definition Classes
    Parsers
  112. def sense_generator : Parser[Product with EvaluableExpr with Serializable]

  113. def sequence_generator : Parser[AlgebraExpr]

  114. def simple_relation_expr : Parser[Product with RelationalExpr with Serializable]

  115. def skipWhitespace : Boolean

    Definition Classes
    RegexParsers
  116. def split : Parser[SplitExpr]

  117. def statement : Parser[Product with EvaluableExpr with Serializable]

  118. def step : Parser[StepExpr]

  119. def step_var_decl : Parser[StepVariable]

  120. def success [T] (v: T): Parser[T]

    Definition Classes
    Parsers
  121. def synchronized [T0] (arg0: ⇒ T0): T0

    Attributes
    final
    Definition Classes
    AnyRef
  122. def synset_generator : Parser[Product with EvaluableExpr with Serializable]

  123. def toString (): String

    Definition Classes
    AnyRef → Any
  124. def unary_expr : Parser[Product with EvaluableExpr with Serializable]

  125. def var_decl : Parser[Product with Variable with Serializable]

  126. def var_decls : Parser[List[Product with Variable with Serializable]]

  127. def variable_generator : Parser[ContextByVariableReq]

  128. def wait (): Unit

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

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

    Attributes
    final
    Definition Classes
    AnyRef
    Annotations
    @throws()
  131. def whiledo : Parser[WhileDoExpr]

  132. val whiteSpace : Regex

    Attributes
    protected
    Definition Classes
    RegexParsers
  133. def with_clause : Parser[PropertyAssignmentExpr]

  134. def with_expr : Parser[ConjunctiveExpr]

Inherited from RegexParsers

Inherited from Parsers

Inherited from AnyRef

Inherited from Any