Interface BooleanFieldOperation<T>
-
- Type Parameters:
T
-
- All Superinterfaces:
FieldOperation<T>
public interface BooleanFieldOperation<T> extends FieldOperation<T>
Operations to filter Boolean fields- Since:
- 8.0.16
- API:
- This is a public API.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description Filter<T>
isEqualTo(boolean value)
Matches Boolean values that are equal to the given valuedefault Filter<T>
isFalse()
Matches Boolean values that are falsedefault Filter<T>
isTrue()
Matches Boolean values that are true
-
-
-
Method Detail
-
isEqualTo
Filter<T> isEqualTo(boolean value)
Matches Boolean values that are equal to the given value- Parameters:
value
-- Returns:
- filter, orderBy, limit, execute operations
- API:
- This public API is available in IvyScript and Java. It has the visibility ADVANCED.
-
isFalse
default Filter<T> isFalse()
Matches Boolean values that are false- Returns:
- filter, orderBy, limit, execute operations
- API:
- This public API is available in IvyScript and Java. It has the visibility ADVANCED.
-
-