package
condition
Type Members
-
case class
AND(lhs: Predicate, rhs: Predicate) extends Predicate with Product with Serializable
-
case class
IN(c: field, rhs: Seq[AnyRef]) extends Predicate with Product with Serializable
-
case class
LIKE(c: field, regex: String) extends Predicate with Product with Serializable
-
case class
MATCHES(c: field, regex: String) extends Predicate with Product with Serializable
-
case class
NOTIN(c: field, rhs: Seq[AnyRef]) extends Predicate with Product with Serializable
-
case class
NOTLIKE(c: field, regex: String) extends Predicate with Product with Serializable
-
case class
NOTMATCHES(c: field, regex: String) extends Predicate with Product with Serializable
-
case class
NOTTYPEOF(c: field, typevalue: String) extends Predicate with Product with Serializable
-
case class
OR(lhs: Predicate, rhs: Predicate) extends Predicate with Product with Serializable
-
trait
Predicate extends Serializable
-
case class
SIZEOF(c: field, op: Op, size: Long) extends Predicate with Product with Serializable
-
case class
TYPEOF(c: field, typevalue: String) extends Predicate with Product with Serializable
-
case class
between[T](c: field, rhs1: T, rhs2: T)(implicit evidence$7: quotes[T], ev: quotes[T]) extends Predicate with Product with Serializable
-
case class
equalsTo[T](c: field, rhs: T)(implicit evidence$5: quotes[T], ev: quotes[T]) extends Predicate with Product with Serializable
-
case class
equalsToMap(c: field, rhs: Map[String, AnyRef]) extends Predicate with Product with Serializable
-
case class
equalsToSeq(c: field, rhs: Seq[AnyRef]) extends Predicate with Product with Serializable
-
case class
exists(c: field) extends Predicate with Product with Serializable
-
case class
greaterThan[T](c: field, rhs: T)(implicit evidence$1: quotes[T], ev: quotes[T]) extends Predicate with Product with Serializable
-
case class
greaterThanEquals[T](c: field, rhs: T)(implicit evidence$2: quotes[T], ev: quotes[T]) extends Predicate with Product with Serializable
-
case class
lessThan[T](c: field, rhs: T)(implicit evidence$3: quotes[T], ev: quotes[T]) extends Predicate with Product with Serializable
-
case class
lessThanEquals[T](c: field, rhs: T)(implicit evidence$4: quotes[T], ev: quotes[T]) extends Predicate with Product with Serializable
-
case class
notEqualsTo[T](c: field, rhs: T)(implicit evidence$6: quotes[T], ev: quotes[T]) extends Predicate with Product with Serializable
-
case class
notEqualsToMap(c: field, rhs: Map[String, AnyRef]) extends Predicate with Product with Serializable
-
case class
notEqualsToSeq(c: field, rhs: Seq[AnyRef]) extends Predicate with Product with Serializable
-
case class
notexists(c: field) extends Predicate with Product with Serializable
-
trait
quotes[T] extends Serializable
Value Members
-
-
implicit
def
quotesBigDecimal: quotes[BigDecimal] { type Self = BigDecimal }
-
implicit
def
quotesBoolean: quotes[Boolean] { type Self = Boolean }
-
implicit
def
quotesByte: quotes[Byte] { type Self = Byte }
-
implicit
def
quotesByteBuffer: quotes[ByteBuffer] { type Self = java.nio.ByteBuffer }
-
implicit
def
quotesDouble: quotes[Double] { type Self = Double }
-
implicit
def
quotesFloat: quotes[Float] { type Self = Float }
-
implicit
def
quotesInt: quotes[Int] { type Self = Int }
-
implicit
def
quotesInteger: quotes[Integer] { type Self = Integer }
-
implicit
def
quotesLong: quotes[Long] { type Self = Long }
-
implicit
def
quotesODate: quotes[ODate] { type Self = org.ojai.types.ODate }
-
implicit
def
quotesOInterval: quotes[OInterval] { type Self = org.ojai.types.OInterval }
-
implicit
def
quotesOTime: quotes[OTime] { type Self = org.ojai.types.OTime }
-
implicit
def
quotesOTimestamp: quotes[OTimestamp] { type Self = org.ojai.types.OTimestamp }
-
implicit
def
quotesShort: quotes[Short] { type Self = Short }
-
implicit
def
quotesString: quotes[String] { type Self = String }
Inherited from AnyRef
Inherited from Any