Interface BoolCellDefinition
- All Superinterfaces:
CellDefinition<Boolean>
,ComparableCellDefinition<Boolean>
Definition of a
boolean
cell.-
Nested Class Summary
Nested classes/interfaces inherited from interface com.terracottatech.store.definition.CellDefinition
CellDefinition.CellImpl<T>, CellDefinition.Impl<T>
-
Method Summary
Modifier and TypeMethodDescriptiondefault BuildablePredicate<CellCollection>
isFalse()
Returns a record predicate derived from the logical inverse of this cell value.default BuildablePredicate<CellCollection>
isTrue()
Returns a record predicate derived from this cell value.Methods inherited from interface com.terracottatech.store.definition.CellDefinition
exists, name, newCell, type
Methods inherited from interface com.terracottatech.store.definition.ComparableCellDefinition
value, valueOr, valueOrFail
-
Method Details
-
isTrue
Returns a record predicate derived from this cell value.If this cell is absent from a record then the predicate evaluates to false.
- Returns:
- a record predicate of this cell
-
isFalse
Returns a record predicate derived from the logical inverse of this cell value.If this cell is absent from a record then the predicate evaluates to false.
- Returns:
- a record predicate of the inverse of this cell
-