static <T extends Comparable<T>,C extends Operators.Column<T> & Operators.SupportsLtGt> Operators.Gt<T> |
FilterApi.gt(C column,
T value) |
Keeps records if their value is greater than (but not equal to) the provided value.
|
static <T extends Comparable<T>,C extends Operators.Column<T> & Operators.SupportsLtGt> Operators.GtEq<T> |
FilterApi.gtEq(C column,
T value) |
Keeps records if their value is greater than or equal to the provided value.
|
static <T extends Comparable<T>,C extends Operators.Column<T> & Operators.SupportsLtGt> Operators.Lt<T> |
FilterApi.lt(C column,
T value) |
Keeps records if their value is less than (but not equal to) the provided value.
|
static <T extends Comparable<T>,C extends Operators.Column<T> & Operators.SupportsLtGt> Operators.LtEq<T> |
FilterApi.ltEq(C column,
T value) |
Keeps records if their value is less than or equal to the provided value.
|