Uses of Interface
ch.ivyteam.ivy.business.data.store.search.Filter
Packages that use Filter
-
Uses of Filter in ch.ivyteam.ivy.business.data.store.search
Methods in ch.ivyteam.ivy.business.data.store.search that return FilterModifier and TypeMethodDescriptionTextFieldOperation.containsAllWordPatterns(String wordPatterns) Matches texts that contain words that matches all of the given word patterns in any order.TextFieldsOperation.containsAllWords(String words) Matches texts that contain all of the given words in any order.TextFieldsOperation.containsAllWords(String... words) Matches texts that contain all of the given words in any order.TextFieldsOperation.containsAllWordsFuzzy(String words) Fuzzy matches texts that contain all of the given words in any order.TextFieldsOperation.containsAllWordsFuzzy(String... words) Fuzzy matches texts that contain all of the given words in any order.TextFieldsOperation.containsAnyWords(String words) Matches texts that contain any of the given words in any order.TextFieldsOperation.containsAnyWords(String... words) Matches texts that contain any of the given words in any order.TextFieldsOperation.containsAnyWordsFuzzy(String words) Fuzzy matches texts that contain any of the given words in any order.TextFieldsOperation.containsAnyWordsFuzzy(String... words) TextFieldsOperation.containsPhrase(String phrase) Matches texts that contain the exact given phrase.TextFieldOperation.containsWordPattern(String wordPatterns) Deprecated, for removal: This API element is subject to removal in a future version.TextFieldOperation.containsWordsInDistance(String words, int maxWordDistance) Matches text values that contain words in a given max distance.Filter using the given subFilter.Matches DateTime values that are after the given valueDateTimeFieldOperation.isAfterOrEqualTo(Date value) Matches DateTime values that are after or equal to the given valueMatches DateTime values that are before the given valueDateTimeFieldOperation.isBeforeOrEqualTo(Date value) Matches DateTime values that are before or equal to the given valueMatches DateTime values that are between the given values (exclusive)Matches Number values that between the given values (exclusive)BooleanFieldOperation.isEqualTo(boolean value) Matches Boolean values that are equal to the given valueMatches DateTime values that are equal to the given valueMatches Number values that are equal to the given valueTextFieldOperation.isEqualToIgnoringCase(String text) Matches text values that are equal ignoring case to the given value.BooleanFieldOperation.isFalse()Matches Boolean values that are falseNumberFieldOperation.isGreaterOrEqualTo(Number value) Matches Number values that are greater than or equal to the given valueNumberFieldOperation.isGreaterThan(Number value) Matches Number values that are greater than the given valueMatches Number values that are in the given valuesDateTimeFieldOperation.isInDateRange(Date fromDateOnlyInclusive, Date toDateOnlyInclusive) Matches DateTime values that are in the range of the given Date values (inclusive).NumberFieldOperation.isLessOrEqualTo(Number value) Matches Number values that are less than or equal to the given valueNumberFieldOperation.isLessThan(Number value) Matches Number values that are less than the given valueBooleanFieldOperation.isTrue()Matches Boolean values that are trueMethods in ch.ivyteam.ivy.business.data.store.search with parameters of type Filter
TextFieldOperation.containsAllWordPatterns(String)instead