org.tresql

QueryBuilder

class QueryBuilder extends EnvProvider

Linear Supertypes
EnvProvider, AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. Hide All
  2. Show all
  1. QueryBuilder
  2. EnvProvider
  3. AnyRef
  4. Any
Visibility
  1. Public
  2. All

Type Members

  1. case class AllExpr () extends PrimitiveExpr with Product with Serializable

  2. case class ArrExpr (elements: List[Expr]) extends BaseExpr with Product with Serializable

  3. case class AssignExpr (variable: String, value: Expr) extends BaseExpr with Product with Serializable

  4. class BaseExpr extends PrimitiveExpr

    Attributes
    abstract
  5. case class BinExpr (op: String, lop: Expr, rop: Expr) extends BaseExpr with Product with Serializable

  6. case class BracesExpr (expr: Expr) extends BaseExpr with Product with Serializable

  7. case class ColExpr (col: Expr, alias: String, typ: String) extends PrimitiveExpr with Product with Serializable

  8. case class ConstExpr (value: Any) extends BaseExpr with Product with Serializable

  9. class DeleteExpr extends BaseExpr

  10. case class FunExpr (name: String, params: List[Expr]) extends BaseExpr with Product with Serializable

  11. case class Group (groupExprs: List[Expr], having: Expr) extends PrimitiveExpr with Product with Serializable

  12. case class IdExpr (seqName: String) extends BaseExpr with Product with Serializable

  13. case class IdRefExpr (seqName: String) extends BaseExpr with Product with Serializable

  14. case class IdentAllExpr (name: List[String]) extends PrimitiveExpr with Product with Serializable

  15. case class IdentExpr (name: List[String]) extends PrimitiveExpr with Product with Serializable

  16. case class InExpr (lop: Expr, rop: List[Expr], not: Boolean) extends BaseExpr with Product with Serializable

  17. class InsertExpr extends DeleteExpr

  18. case class Order (ordExprs: (Null, List[Expr], Null), asc: Boolean) extends PrimitiveExpr with Product with Serializable

  19. class PrimitiveExpr extends Expr

    Attributes
    abstract
  20. case class ResExpr (nr: Int, col: Any) extends PrimitiveExpr with Product with Serializable

  21. case class SelectExpr (tables: List[Table], filter: List[Expr], cols: List[ColExpr], distinct: Boolean, group: Expr, order: List[Expr], offset: Expr, limit: Expr, aliases: Map[String, Table]) extends BaseExpr with Product with Serializable

  22. case class Table (table: Expr, alias: String, join: TableJoin, outerJoin: String, nullable: Boolean) extends Product with Serializable

  23. case class TableJoin (default: Boolean, expr: Expr, noJoin: Boolean, defaultJoinCols: (List[String], List[String])) extends Product with Serializable

  24. case class UnExpr (op: String, operand: Expr) extends BaseExpr with Product with Serializable

  25. class UpdateExpr extends DeleteExpr

  26. case class VarExpr (name: String, opt: Boolean) extends BaseExpr with Product with Serializable

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. val COL_CTX : String

  7. val FUN_CTX : String

  8. val GROUP_CTX : String

  9. val HAVING_CTX : String

  10. val JOIN_CTX : String

  11. val LIMIT_CTX : String

  12. val ORD_CTX : String

  13. val QUERY_CTX : String

  14. val ROOT_CTX : String

  15. val TABLE_CTX : String

  16. val VALUES_CTX : String

  17. val WHERE_CTX : String

  18. def asInstanceOf [T0] : T0

    Attributes
    final
    Definition Classes
    Any
  19. def clone (): AnyRef

    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws()
  20. val env : Env

    Definition Classes
    QueryBuilderEnvProvider
  21. def eq (arg0: AnyRef): Boolean

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

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

    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws()
  24. def getClass (): java.lang.Class[_]

    Attributes
    final
    Definition Classes
    AnyRef → Any
  25. def hashCode (): Int

    Definition Classes
    AnyRef → Any
  26. def isInstanceOf [T0] : Boolean

    Attributes
    final
    Definition Classes
    Any
  27. def ne (arg0: AnyRef): Boolean

    Attributes
    final
    Definition Classes
    AnyRef
  28. def notify (): Unit

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

    Attributes
    final
    Definition Classes
    AnyRef
  30. def synchronized [T0] (arg0: ⇒ T0): T0

    Attributes
    final
    Definition Classes
    AnyRef
  31. def toString (): String

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

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

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

    Attributes
    final
    Definition Classes
    AnyRef
    Annotations
    @throws()

Inherited from EnvProvider

Inherited from AnyRef

Inherited from Any