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, sepQuery: Boolean, hidden: Boolean) 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 ExternalFunExpr (name: String, params: List[Expr], method: Method) extends BaseExpr with Product with Serializable

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

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

  13. case class HiddenColRefExpr (expr: Expr, resType: Class[_]) extends PrimitiveExpr with Product with Serializable

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

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

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

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

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

  19. class InsertExpr extends DeleteExpr

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

  21. class PrimitiveExpr extends Expr

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

  23. 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

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

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

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

  27. class UpdateExpr extends DeleteExpr

  28. 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 EXTERNAL_FUN_CTX : String

  8. val FUN_CTX : String

  9. val GROUP_CTX : String

  10. val HAVING_CTX : String

  11. val JOIN_CTX : String

  12. val LIMIT_CTX : String

  13. val ORD_CTX : String

  14. val QUERY_CTX : String

  15. val ROOT_CTX : String

  16. val TABLE_CTX : String

  17. val VALUES_CTX : String

  18. val WHERE_CTX : String

  19. def asInstanceOf [T0] : T0

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    Attributes
    final
    Definition Classes
    AnyRef
    Annotations
    @throws()

Inherited from EnvProvider

Inherited from AnyRef

Inherited from Any