final class WhereSyntax[A] extends AnyVal
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- WhereSyntax
- AnyVal
- Any
- Hide All
- Show All
Visibility
- Public
- Protected
Instance Constructors
- new WhereSyntax(self: A)
Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- Any
- final def ##: Int
- Definition Classes
- Any
- final def ==(arg0: Any): Boolean
- Definition Classes
- Any
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def getClass(): Class[_ <: AnyVal]
- Definition Classes
- AnyVal → Any
- def isIn(first: A, second: A, rest: A*): Boolean
Check whenever
this
value is one of the specified values.Check whenever
this
value is one of the specified values.Example:
select[Employee] .where(_.profession isIn (Programmer, Manager))
- def isInCollection(values: Seq[A]): Boolean
Check whenever
this
value is one of the specified values.Check whenever
this
value is one of the specified values.Example:
select[Employee] .where(_.profession isInCollection List(Programmer, Manager))
- def isInCollection(values: Set[A]): Boolean
Check whenever
this
value is one of the specified values.Check whenever
this
value is one of the specified values.Example:
select[Employee] .where(_.profession isInCollection Set(Programmer, Manager))
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- def toString(): String
- Definition Classes
- Any