Object/Trait

wvlet.airframe.sql.model

Expression

Related Docs: trait Expression | package model

Permalink

object Expression

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

Type Members

  1. case class AllColumns(prefix: Option[QName]) extends Attribute with Product with Serializable

    Permalink
  2. case class And(left: Expression, right: Expression) extends ConditionalExpression with BinaryExpression with Product with Serializable

    Permalink
  3. case class ArithmeticBinaryExpr(exprType: BinaryExprType, left: Expression, right: Expression) extends ArithmeticExpression with BinaryExpression with Product with Serializable

    Permalink
  4. sealed trait ArithmeticExpression extends Expression

    Permalink
  5. case class ArithmeticUnaryExpr(sign: Sign, child: Expression) extends ArithmeticExpression with UnaryExpression with Product with Serializable

    Permalink
  6. case class ArrayConstructor(values: Seq[Expression]) extends Expression with Product with Serializable

    Permalink
  7. case class BackQuotedIdentifier(value: String) extends Identifier with Product with Serializable

    Permalink
  8. case class Between(e: Expression, a: Expression, b: Expression) extends ConditionalExpression with Product with Serializable

    Permalink
  9. sealed abstract class BinaryExprType extends AnyRef

    Permalink
  10. case class BinaryLiteral(binary: String) extends Literal with LeafExpression with Product with Serializable

    Permalink
  11. sealed trait BooleanLiteral extends Literal

    Permalink
  12. case class CaseExpr(operand: Option[Expression], whenClauses: Seq[WhenClause], defaultValue: Option[Expression]) extends Expression with Product with Serializable

    Permalink
  13. case class Cast(expr: Expression, tpe: String, tryCast: Boolean = false) extends UnaryExpression with Product with Serializable

    Permalink
  14. case class CharLiteral(value: String) extends Literal with LeafExpression with Product with Serializable

    Permalink
  15. case class ColumnDef(columnName: Identifier, tpe: ColumnType) extends TableElement with UnaryExpression with Product with Serializable

    Permalink
  16. case class ColumnDefLike(tableName: QName, includeProperties: Boolean) extends TableElement with UnaryExpression with Product with Serializable

    Permalink
  17. case class ColumnType(tpe: String) extends LeafExpression with Product with Serializable

    Permalink
  18. sealed trait ConditionalExpression extends Expression

    Permalink
  19. case class CurrentDate(precision: Option[Int]) extends CurrentTimeBase with Product with Serializable

    Permalink
  20. case class CurrentLocalTime(precision: Option[Int]) extends CurrentTimeBase with Product with Serializable

    Permalink
  21. case class CurrentLocalTimeStamp(precision: Option[Int]) extends CurrentTimeBase with Product with Serializable

    Permalink
  22. case class CurrentTime(precision: Option[Int]) extends CurrentTimeBase with Product with Serializable

    Permalink
  23. sealed abstract class CurrentTimeBase extends LeafExpression

    Permalink
  24. case class CurrentTimestamp(precision: Option[Int]) extends CurrentTimeBase with Product with Serializable

    Permalink
  25. case class DecimalLiteral(value: String) extends Literal with LeafExpression with Product with Serializable

    Permalink
  26. case class DigitId(value: String) extends Identifier with Product with Serializable

    Permalink
  27. case class DistinctFrom(left: Expression, right: Expression) extends ConditionalExpression with BinaryExpression with Product with Serializable

    Permalink
  28. case class DoubleLiteral(value: Double) extends Literal with LeafExpression with Product with Serializable

    Permalink
  29. case class Eq(left: Expression, right: Expression) extends ConditionalExpression with BinaryExpression with Product with Serializable

    Permalink
  30. case class Exists(child: Expression) extends Expression with UnaryExpression with Product with Serializable

    Permalink
  31. case class Following(n: Long) extends FrameBound with Product with Serializable

    Permalink
  32. sealed trait FrameBound extends AnyRef

    Permalink
  33. sealed trait FrameType extends AnyRef

    Permalink
  34. case class FunctionCall(name: String, args: Seq[Expression], isDistinct: Boolean, filter: Option[Expression], window: Option[Window]) extends Expression with Product with Serializable

    Permalink
  35. case class GenericLiteral(tpe: String, value: String) extends Literal with LeafExpression with Product with Serializable

    Permalink
  36. case class GreaterThan(left: Expression, right: Expression) extends ConditionalExpression with BinaryExpression with Product with Serializable

    Permalink
  37. case class GreaterThanOrEq(left: Expression, right: Expression) extends ConditionalExpression with BinaryExpression with Product with Serializable

    Permalink
  38. case class GroupingKey(child: Expression) extends UnaryExpression with Product with Serializable

    Permalink
  39. sealed trait Identifier extends LeafExpression

    Permalink
  40. case class IfExpr(cond: ConditionalExpression, onTrue: Expression, onFalse: Expression) extends Expression with Product with Serializable

    Permalink
  41. case class In(a: Expression, list: Seq[Expression]) extends ConditionalExpression with Product with Serializable

    Permalink
  42. case class InSubQuery(a: Expression, in: Relation) extends ConditionalExpression with Product with Serializable

    Permalink
  43. sealed trait IntervalField extends LeafExpression

    Permalink
  44. case class IntervalLiteral(value: String, sign: Sign, startField: IntervalField, end: Option[IntervalField]) extends Literal with Product with Serializable

    Permalink
  45. case class IsNotNull(child: Expression) extends ConditionalExpression with UnaryExpression with Product with Serializable

    Permalink
  46. case class IsNull(child: Expression) extends ConditionalExpression with UnaryExpression with Product with Serializable

    Permalink
  47. sealed trait JoinCriteria extends Expression

    Permalink
  48. case class JoinOn(expr: Expression) extends JoinCriteria with UnaryExpression with Product with Serializable

    Permalink
  49. case class JoinUsing(columns: Seq[Identifier]) extends JoinCriteria with Product with Serializable

    Permalink
  50. case class LambdaExpr(body: Expression, args: Seq[String]) extends Expression with UnaryExpression with Product with Serializable

    Permalink
  51. case class LessThan(left: Expression, right: Expression) extends ConditionalExpression with BinaryExpression with Product with Serializable

    Permalink
  52. case class LessThanOrEq(left: Expression, right: Expression) extends ConditionalExpression with BinaryExpression with Product with Serializable

    Permalink
  53. case class Like(left: Expression, right: Expression) extends ConditionalExpression with BinaryExpression with Product with Serializable

    Permalink
  54. sealed trait Literal extends Expression

    Permalink
  55. case class LongLiteral(value: Long) extends Literal with LeafExpression with Product with Serializable

    Permalink
  56. case class Not(child: Expression) extends ConditionalExpression with UnaryExpression with Product with Serializable

    Permalink
  57. case class NotDistinctFrom(left: Expression, right: Expression) extends ConditionalExpression with BinaryExpression with Product with Serializable

    Permalink
  58. case class NotEq(left: Expression, right: Expression) extends ConditionalExpression with BinaryExpression with Product with Serializable

    Permalink
  59. case class NotIn(a: Expression, list: Seq[Expression]) extends ConditionalExpression with Product with Serializable

    Permalink
  60. case class NotInSubQuery(a: Expression, in: Relation) extends ConditionalExpression with Product with Serializable

    Permalink
  61. case class NotLike(left: Expression, right: Expression) extends ConditionalExpression with BinaryExpression with Product with Serializable

    Permalink
  62. sealed trait NullOrdering extends AnyRef

    Permalink
  63. case class Or(left: Expression, right: Expression) extends ConditionalExpression with BinaryExpression with Product with Serializable

    Permalink
  64. case class Parameter(index: Int) extends LeafExpression with Product with Serializable

    Permalink
  65. case class ParenthesizedExpression(child: Expression) extends UnaryExpression with Product with Serializable

    Permalink

  66. case class Preceding(n: Long) extends FrameBound with Product with Serializable

    Permalink
  67. case class QName(parts: Seq[String]) extends LeafExpression with Product with Serializable

    Permalink
  68. case class QuotedIdentifier(value: String) extends Identifier with Product with Serializable

    Permalink
  69. case class Ref(name: QName) extends Expression with LeafExpression with Product with Serializable

    Permalink
  70. case class RowConstructor(values: Seq[Expression]) extends Expression with Product with Serializable

    Permalink
  71. case class SchemaProperty(key: Identifier, value: Expression) extends Expression with Product with Serializable

    Permalink
  72. sealed trait SetQuantifier extends LeafExpression

    Permalink
  73. sealed abstract class Sign extends AnyRef

    Permalink
  74. case class SingleColumn(expr: Expression, alias: Option[Expression]) extends Attribute with Product with Serializable

    Permalink
  75. case class SortItem(sortKey: Expression, ordering: Option[SortOrdering] = None, nullOrdering: Option[NullOrdering]) extends Expression with UnaryExpression with Product with Serializable

    Permalink
  76. sealed trait SortOrdering extends AnyRef

    Permalink
  77. case class StringLiteral(value: String) extends Literal with LeafExpression with Product with Serializable

    Permalink
  78. case class SubQueryExpression(query: Relation) extends Expression with Product with Serializable

    Permalink
  79. sealed trait TableElement extends Expression

    Permalink
  80. case class TimeLiteral(value: String) extends Literal with LeafExpression with Product with Serializable

    Permalink
  81. case class TimestampLiteral(value: String) extends Literal with LeafExpression with Product with Serializable

    Permalink
  82. case class UnquotedIdentifier(value: String) extends Identifier with Product with Serializable

    Permalink
  83. case class UnresolvedAttribute(name: String) extends Attribute with Product with Serializable

    Permalink
  84. case class WhenClause(condition: Expression, result: Expression) extends Expression with Product with Serializable

    Permalink
  85. case class Window(partitionBy: Seq[Expression], orderBy: Seq[SortItem], frame: Option[WindowFrame]) extends Expression with Product with Serializable

    Permalink
  86. case class WindowFrame(frameType: FrameType, start: FrameBound, end: Option[FrameBound]) extends Expression with LeafExpression with Product with Serializable

    Permalink

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 Add extends BinaryExprType with Product with Serializable

    Permalink
  5. object All extends SetQuantifier with Product with Serializable

    Permalink
  6. object Ascending extends SortOrdering with Product with Serializable

    Permalink
  7. object CurrentRow extends FrameBound with Product with Serializable

    Permalink
  8. object Day extends IntervalField with Product with Serializable

    Permalink
  9. object Descending extends SortOrdering with Product with Serializable

    Permalink
  10. object DistinctSet extends SetQuantifier with Product with Serializable

    Permalink
  11. object Divide extends BinaryExprType with Product with Serializable

    Permalink
  12. object FalseLiteral extends BooleanLiteral with LeafExpression with Product with Serializable

    Permalink
  13. object Hour extends IntervalField with Product with Serializable

    Permalink
  14. object Minute extends IntervalField with Product with Serializable

    Permalink
  15. object Modulus extends BinaryExprType with Product with Serializable

    Permalink
  16. object Month extends IntervalField with Product with Serializable

    Permalink
  17. object Multiply extends BinaryExprType with Product with Serializable

    Permalink
  18. object NaturalJoin extends JoinCriteria with LeafExpression with Product with Serializable

    Permalink
  19. object Negative extends Sign with Product with Serializable

    Permalink
  20. object NoOp extends ConditionalExpression with LeafExpression with Product with Serializable

    Permalink
  21. object NullIsFirst extends NullOrdering with Product with Serializable

    Permalink
  22. object NullIsLast extends NullOrdering with Product with Serializable

    Permalink
  23. object NullLiteral extends Literal with LeafExpression with Product with Serializable

    Permalink
  24. object Positive extends Sign with Product with Serializable

    Permalink
  25. object QName extends Serializable

    Permalink
  26. object RangeFrame extends FrameType with Product with Serializable

    Permalink
  27. object RowsFrame extends FrameType with Product with Serializable

    Permalink
  28. object Second extends IntervalField with Product with Serializable

    Permalink
  29. object Subtract extends BinaryExprType with Product with Serializable

    Permalink
  30. object TrueLiteral extends BooleanLiteral with LeafExpression with Product with Serializable

    Permalink
  31. object UnboundedFollowing extends FrameBound with Product with Serializable

    Permalink
  32. object UnboundedPreceding extends FrameBound with Product with Serializable

    Permalink
  33. object UndefinedOrder extends NullOrdering with Product with Serializable

    Permalink
  34. object Year extends IntervalField with Product with Serializable

    Permalink
  35. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  36. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @HotSpotIntrinsicCandidate() @throws( ... )
  37. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  38. def equals(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  39. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
    Annotations
    @HotSpotIntrinsicCandidate()
  40. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
    Annotations
    @HotSpotIntrinsicCandidate()
  41. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  42. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  43. final def notify(): Unit

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @HotSpotIntrinsicCandidate()
  45. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  46. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  47. final def wait(arg0: Long, arg1: Int): Unit

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

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

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 AnyRef

Inherited from Any

Ungrouped