Packages

object EXPR

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. EXPR
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Type Members

  1. case class Attribute(value: EXPR, attr: Identifier, ctx: EXPR_CTX, tpeOpt: Option[ESType] = None) extends EXPR with Product with Serializable
  2. case class Base58Str(s: String) extends EXPR with Product with Serializable
  3. case class BinOp(left: EXPR, op: OPERATOR, right: EXPR, tpeOpt: Option[ESType] = None) extends EXPR with Product with Serializable
  4. sealed trait Bool extends EXPR
  5. case class BoolOp(op: BOOL_OP, values: List[EXPR]) extends EXPR with Product with Serializable
  6. case class Call(func: EXPR, args: List[EXPR], keywords: List[Keyword], tpeOpt: Option[ESType] = None) extends EXPR with Product with Serializable
  7. case class Compare(left: EXPR, ops: List[COMP_OP], comparators: List[EXPR]) extends EXPR with Product with Serializable
  8. case class Declaration(target: EXPR, typeOpt: Option[TypeIdentifier]) extends EXPR with Product with Serializable
  9. case class ESDictNode(keys: List[EXPR], values: List[EXPR], tpeOpt: Option[ESType] = None) extends EXPR with Product with Serializable
  10. case class ESList(elts: List[EXPR], ctx: EXPR_CTX, tpeOpt: Option[ESType] = None) extends EXPR with Product with Serializable
  11. case class ESSet(elts: List[EXPR], tpeOpt: Option[ESType] = None) extends EXPR with Product with Serializable
  12. case class ESTuple(elts: List[EXPR], ctx: EXPR_CTX, tpeOpt: Option[ESType] = None) extends EXPR with Product with Serializable
  13. case class Exists(coll: EXPR, predicate: EXPR) extends EXPR with Transformer with Product with Serializable
  14. case class Get(opt: EXPR, tpeOpt: Option[ESType] = None) extends EXPR with Transformer with Product with Serializable
  15. case class IfExp(test: EXPR, body: EXPR, orelse: EXPR, tpeOpt: Option[ESType] = None) extends EXPR with Product with Serializable
  16. case class IntConst(n: Int) extends EXPR with Num with Product with Serializable
  17. case class IsDefined(opt: EXPR) extends EXPR with Transformer with Product with Serializable
  18. case class Lambda(args: Arguments, body: EXPR, tpeOpt: Option[ESType] = None) extends EXPR with Product with Serializable
  19. case class LongConst(n: Long) extends EXPR with Num with Product with Serializable
  20. case class Map(coll: EXPR, func: EXPR, tpeOpt: Option[ESType] = None) extends EXPR with Transformer with Product with Serializable
  21. case class Name(id: Identifier, ctx: EXPR_CTX, tpeOpt: Option[ESType] = None) extends EXPR with Product with Serializable
  22. sealed trait Num extends EXPR
  23. case class SchemaMatching(name: Identifier, schemaId: Identifier) extends EXPR with Product with Serializable
  24. case class SizeOf(coll: EXPR) extends EXPR with Transformer with Product with Serializable
  25. case class Str(s: String) extends EXPR with Product with Serializable
  26. case class Subscript(value: EXPR, slice: SLICE, ctx: EXPR_CTX, tpeOpt: Option[ESType] = None) extends EXPR with Product with Serializable
  27. case class Sum(coll: EXPR, tpeOpt: Option[ESType] = None) extends EXPR with Transformer with Product with Serializable
  28. sealed trait Transformer extends EXPR
  29. case class TypeMatching(name: Identifier, tipe: TypeIdentifier) extends EXPR with Product with Serializable
  30. case class UnaryOp(op: UNARY_OP, operand: EXPR, tpeOpt: Option[ESType] = None) extends EXPR with Product with Serializable

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 def asInstanceOf[T0]: T0
    Definition Classes
    Any
  5. def clone(): AnyRef
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @native() @throws( ... )
  6. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  7. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  8. def finalize(): Unit
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  9. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  10. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  11. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  12. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  13. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  14. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  15. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  16. def toString(): String
    Definition Classes
    AnyRef → Any
  17. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  18. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  19. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @throws( ... )
  20. object False extends EXPR with Bool with Product with Serializable
  21. object GenericCond extends EXPR with Product with Serializable
  22. object True extends EXPR with Bool with Product with Serializable

Inherited from AnyRef

Inherited from Any

Ungrouped