Uses of Class
com.google.cloud.firestore.Filter
Packages that use Filter
-
Uses of Filter in com.google.cloud.firestore
Methods in com.google.cloud.firestore that return FilterModifier and TypeMethodDescriptionstatic FilterCreates a new filter that is a conjunction of the given filters.static FilterFilter.arrayContains(FieldPath fieldPath, Object value) Creates a new filter for checking that the given array field contains the given value.static FilterFilter.arrayContains(String field, Object value) Creates a new filter for checking that the given array field contains the given value.static FilterFilter.arrayContainsAny(FieldPath fieldPath, Object value) Creates a new filter for checking that the given array field contains any of the given values.static FilterFilter.arrayContainsAny(String field, Object value) Creates a new filter for checking that the given array field contains any of the given values.static FilterCreates a new filter for checking that the given field is equal to the given value.static FilterCreates a new filter for checking that the given field is equal to the given value.static FilterFilter.greaterThan(FieldPath fieldPath, Object value) Creates a new filter for checking that the given field is greater than the given value.static FilterFilter.greaterThan(String field, Object value) Creates a new filter for checking that the given field is greater than the given value.static FilterFilter.greaterThanOrEqualTo(FieldPath fieldPath, Object value) Creates a new filter for checking that the given field is greater than or equal to the given value.static FilterFilter.greaterThanOrEqualTo(String field, Object value) Creates a new filter for checking that the given field is greater than or equal to the given value.static FilterCreates a new filter for checking that the given field equals any of the given values.static FilterCreates a new filter for checking that the given field equals any of the given values.static FilterCreates a new filter for checking that the given field is less than the given value.static FilterCreates a new filter for checking that the given field is less than the given value.static FilterFilter.lessThanOrEqualTo(FieldPath fieldPath, Object value) Creates a new filter for checking that the given field is less than or equal to the given value.static FilterFilter.lessThanOrEqualTo(String field, Object value) Creates a new filter for checking that the given field is less than or equal to the given value.static FilterFilter.notEqualTo(FieldPath fieldPath, Object value) Creates a new filter for checking that the given field is not equal to the given value.static FilterFilter.notEqualTo(String field, Object value) Creates a new filter for checking that the given field is not equal to the given value.static FilterFilter.notInArray(FieldPath fieldPath, Object value) Creates a new filter for checking that the given field does not equal any of the given values.static FilterFilter.notInArray(String field, Object value) Creates a new filter for checking that the given field does not equal any of the given values.static FilterCreates a new filter that is a disjunction of the given filters.Methods in com.google.cloud.firestore with parameters of type Filter