ENTITY
- the entity typepublic interface HasBooleanOperators<ENTITY> extends Field<ENTITY>
Modifier and Type | Method and Description |
---|---|
Predicate<ENTITY> |
equal(boolean value)
Returns a
Predicate that will evaluate to
true , if and only if this Field is equal to the given
value. |
default Predicate<ENTITY> |
isFalse()
Returns a
Predicate that will evaluate to
true , if and only if this Field is false |
default Predicate<ENTITY> |
isTrue()
Returns a
Predicate that will evaluate to
true , if and only if this Field is true |
Predicate<ENTITY> |
notEqual(boolean value)
Returns a
Predicate that will evaluate to
true , if and only if this Field is not equal to the
given value. |
findColumn, identifier
typeMapper
Predicate<ENTITY> equal(boolean value)
Predicate
that will evaluate to
true
, if and only if this Field is equal to the given
value.value
- to comparetrue
, if and only if
this Field is equal to the given valuePredicate<ENTITY> notEqual(boolean value)
Predicate
that will evaluate to
true
, if and only if this Field is not equal to the
given value.value
- to comparetrue
, if and only if
this Field is not equal to the given valuedefault Predicate<ENTITY> isTrue()
Predicate
that will evaluate to
true
, if and only if this Field is truetrue
, if and only if
this Field is true.Copyright © 2017 Speedment, Inc.. All rights reserved.