| AtLeastColumnConstraint<T extends java.lang.Comparable<T>> |
Column Constraint where acceptable column values are greater than or equal to some specified
value of the column type.
|
| AtLeastDateColumnConstraint |
Column Constraint where acceptable column values are greater than or equal to some specified
value of the column type.
|
| AtMostColumnConstraint<T extends java.lang.Comparable<T>> |
Column Constraint where acceptable column values are less than or equal to some specified
value of the column type.
|
| AtMostDateColumnConstraint |
Column Constraint where acceptable column values are greater than or equal to some specified
value of the column type
|
| BooleanMatchColumnConstraint |
Column Constraint for boolean values where the column values must match the constraint value
of either true of false.
|
| ColumnTypeMapper<T,M> |
ColumnConstraintTypeMappers allows columns of one type be filterable using an existing ColumnConstraint
for a different type by defining a mapping from the column type to the desired
filter type.
|
| EnumColumnConstraint<T extends java.lang.Enum<T>> |
Column Constraint where acceptable column values are Enum values that match one of a set of
selected values from the Enum.
|
| InDateRangeColumnConstraint |
Column Constraint where acceptable column values are within some range defined by a min value and
a max value.
|
| InRangeColumnConstraint<T extends java.lang.Comparable<T>> |
Column Constraint where acceptable column values are within some range defined by a min value and
a max value.
|
| MappedColumnConstraint<T,M> |
Class that maps one type of column constraint into another.
|
| NotInDateRangeColumnConstraint |
Column Constraint where acceptable column values are not within some range defined by a min value and
a max value.
|
| NotInRangeColumnConstraint<T extends java.lang.Comparable<T>> |
Column Constraint where acceptable column values are outside some range defined by a min value and
a max value.
|
| ObjectToStringMapper<T> |
|
| RangeColumnConstraint<T> |
Abstract base class for range constraints.
|
| SingleValueColumnConstraint<T> |
Abstract base class for single value constraints such as "At Most" or "At Least"
|
| StringColumnConstraint |
Base class for various String constraints.
|
| StringContainsColumnConstraint |
String column constraint for matching column values if they contain the constraint value pattern.
|
| StringEndsWithColumnConstraint |
String column constraint for matching column values if they end with the constraint value pattern.
|
| StringIsEmptyColumnConstraint |
String column constraint for matching when the value is null or the empty string.
|
| StringIsNotEmptyColumnConstraint |
String column constraint for matching when the value is not null and not the empty string.
|
| StringMatcherColumnConstraint |
String column constraint for matching column values if they match a full regular expression pattern.
|
| StringNotContainsColumnConstraint |
String column constraint for matching column values if they don't contain the constraint value pattern.
|
| StringNotEndsWithColumnConstraint |
String column constraint for matching column values if they don't end with the constraint value pattern.
|
| StringNotStartsWithColumnConstraint |
String column constraint for matching column values if they don't start with the constraint value pattern.
|
| StringStartsWithColumnConstraint |
String column constraint for matching column values if they start with the constraint value pattern.
|