Uses of Interface
org.gbif.api.model.predicate.Predicate
-
Packages that use Predicate Package Description org.gbif.api.model.occurrence org.gbif.api.model.occurrence.search org.gbif.api.model.predicate org.gbif.api.query -
-
Uses of Predicate in org.gbif.api.model.occurrence
Methods in org.gbif.api.model.occurrence that return Predicate Modifier and Type Method Description @Valid Predicate
PredicateDownloadRequest. getPredicate()
Methods in org.gbif.api.model.occurrence with parameters of type Predicate Modifier and Type Method Description void
PredicateDownloadRequest. setPredicate(Predicate predicate)
Constructors in org.gbif.api.model.occurrence with parameters of type Predicate Constructor Description PredicateDownloadRequest(Predicate predicate, String creator, Collection<String> notificationAddresses, Boolean sendNotification, DownloadFormat format, DownloadType type, Set<Extension> verbatimExtensions)
Full constructor. -
Uses of Predicate in org.gbif.api.model.occurrence.search
Methods in org.gbif.api.model.occurrence.search that return Predicate Modifier and Type Method Description Predicate
OccurrencePredicateSearchRequest. getPredicate()
Methods in org.gbif.api.model.occurrence.search with parameters of type Predicate Modifier and Type Method Description void
OccurrencePredicateSearchRequest. setPredicate(Predicate predicate)
-
Uses of Predicate in org.gbif.api.model.predicate
Classes in org.gbif.api.model.predicate that implement Predicate Modifier and Type Class Description class
CompoundPredicate
A compound predicate is a Predicate that itself contains other Predicates.class
ConjunctionPredicate
This predicate is "AND"-ing its subpredicates together.class
DisjunctionPredicate
This predicate is "OR"-ing its subpredicates together.class
EqualsPredicate<S extends SearchParameter>
This predicate checks if itskey
is equal to itsvalue
.class
FullTextSearchPredicate
This predicate checks performs a full text search based on a query parameter.class
GeoDistancePredicate
This predicate checks if an occurrence location falls within a distance of a location.class
GreaterThanOrEqualsPredicate<S extends SearchParameter>
This predicate checks if itskey
is greater than or equal itsvalue
.class
GreaterThanPredicate<S extends SearchParameter>
This predicate checks if itskey
is greater than itsvalue
.class
InPredicate<S extends SearchParameter>
This predicate checks if itskey
contains any of itsvalues
.class
IsNotNullPredicate<S extends SearchParameter>
class
IsNullPredicate<S extends SearchParameter>
class
LessThanOrEqualsPredicate<S extends SearchParameter>
This predicate checks if itskey
is less or equal than itsvalue
.class
LessThanPredicate<S extends SearchParameter>
This predicate checks if itskey
is less than itsvalue
.class
LikePredicate<S extends SearchParameter>
This predicate checks if itskey
is LIKE itsvalue
.class
NotPredicate
This predicate negates its subpredicate.class
RangePredicate<S extends SearchParameter>
This predicate checks if itskey
is within the rangevalue
.class
SimplePredicate<S extends SearchParameter>
class
WithinPredicate
This predicate checks if an occurrence location falls within the given WKT geometryvalue
.Methods in org.gbif.api.model.predicate that return Predicate Modifier and Type Method Description Predicate
NotPredicate. getPredicate()
Methods in org.gbif.api.model.predicate that return types with arguments of type Predicate Modifier and Type Method Description Collection<Predicate>
CompoundPredicate. getPredicates()
Returns all the predicates this compound predicate is made out of in an immutable collection.Constructors in org.gbif.api.model.predicate with parameters of type Predicate Constructor Description NotPredicate(Predicate predicate)
Constructor parameters in org.gbif.api.model.predicate with type arguments of type Predicate Constructor Description ConjunctionPredicate(Collection<Predicate> predicates)
DisjunctionPredicate(Collection<Predicate> predicates)
-
Uses of Predicate in org.gbif.api.query
Methods in org.gbif.api.query with parameters of type Predicate Modifier and Type Method Description String
QueryVisitor. buildQuery(Predicate predicate)
-