| CompoundPredicate |
A compound predicate is a Predicate that itself contains other Predicates.
|
| ConjunctionPredicate |
This predicate is "AND"-ing its subpredicates together.
|
| DisjunctionPredicate |
This predicate is "OR"-ing its subpredicates together.
|
| EqualsPredicate<S extends SearchParameter> |
This predicate checks if its key is equal to its value.
|
| FullTextSearchPredicate |
This predicate checks performs a full text search based on a query parameter.
|
| GeoDistancePredicate |
This predicate checks if an occurrence location falls within a distance of a location.
|
| GreaterThanOrEqualsPredicate<S extends SearchParameter> |
This predicate checks if its key is greater than or equal its value.
|
| GreaterThanPredicate<S extends SearchParameter> |
This predicate checks if its key is greater than its value.
|
| InPredicate<S extends SearchParameter> |
This predicate checks if its key contains any of its values.
|
| IsNotNullPredicate<S extends SearchParameter> |
|
| IsNullPredicate<S extends SearchParameter> |
|
| LessThanOrEqualsPredicate<S extends SearchParameter> |
This predicate checks if its key is less or equal than its value.
|
| LessThanPredicate<S extends SearchParameter> |
This predicate checks if its key is less than its value.
|
| LikePredicate<S extends SearchParameter> |
This predicate checks if its key is LIKE its value.
|
| NotPredicate |
This predicate negates its subpredicate.
|
| RangePredicate<S extends SearchParameter> |
This predicate checks if its key is within the range value.
|
| SimplePredicate<S extends SearchParameter> |
|
| WithinPredicate |
This predicate checks if an occurrence location falls within the given WKT geometry value.
|