object SQLSyntax
Ordering
- Alphabetic
- By Inheritance
Inherited
- SQLSyntax
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- All
Type Members
- case class App(fun: FunOrOp, args: List[Expr]) extends Expr with Product with Serializable
- case class ArrayType[U](entryType: Type[U]) extends Type[List[U]] with Product with Serializable
- case class ArrayVal[U](tp: Type[U], elems: List[U]) extends Value with Product with Serializable
- sealed abstract class BaseType[U] extends Type[U]
- case class BoolVal(b: Boolean) extends Value with Product with Serializable
- case class ColumnRef(name: String) extends Expr with Product with Serializable
-
sealed abstract
class
Expr extends AnyRef
expressions as used in WHERE clause
- case class FloatVal(d: Double) extends Value with Product with Serializable
- case class Fun(name: String) extends FunOrOp with Product with Serializable
- sealed abstract class FunOrOp extends AnyRef
- case class InfixOp(name: String) extends FunOrOp with Product with Serializable
- case class IntVal(v: Int) extends Value with Product with Serializable
- case class JSONVal(j: JSON) extends Value with Product with Serializable
- case class PostfixOp(name: String) extends UnaryOp with Product with Serializable
- case class PrefixOp(name: String) extends UnaryOp with Product with Serializable
- case class StringVal(s: String) extends Value with Product with Serializable
- sealed abstract class Type[U] extends AnyRef
- case class UUIDVal(u: UUID) extends Value with Product with Serializable
- sealed abstract class UnaryOp extends FunOrOp
- sealed abstract class Value extends Expr
Value Members
-
final
def
!=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
##(): Int
- Definition Classes
- AnyRef → Any
-
final
def
==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
asInstanceOf[T0]: T0
- Definition Classes
- Any
-
def
clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( ... ) @native()
-
final
def
eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
def
equals(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
def
finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( classOf[java.lang.Throwable] )
-
final
def
getClass(): Class[_]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
-
def
hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
-
final
def
isInstanceOf[T0]: Boolean
- Definition Classes
- Any
-
final
def
ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
final
def
notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
-
final
def
notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
-
final
def
synchronized[T0](arg0: ⇒ T0): T0
- Definition Classes
- AnyRef
-
def
toString(): String
- Definition Classes
- AnyRef → Any
-
final
def
wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... ) @native()
- object BoolType extends BaseType[Boolean] with Product with Serializable
- object FloatType extends BaseType[Double] with Product with Serializable
- object IntType extends BaseType[Int] with Product with Serializable
- object JSONType extends BaseType[JSON] with Product with Serializable
- object StringType extends BaseType[String] with Product with Serializable
- object UUIDType extends BaseType[UUID] with Product with Serializable
- object Value