Uses of Interface
io.annot8.api.filters.Filter
-
Packages that use Filter Package Description io.annot8.api.data This package contains the api data objects used by Annot8io.annot8.api.filters io.annot8.api.helpers This package contains helper interfaces used internally by the Annot8 api module.io.annot8.api.stores This package contains the api interfaces for store objects -
-
Uses of Filter in io.annot8.api.data
Methods in io.annot8.api.data with parameters of type Filter Modifier and Type Method Description default Stream<Content<?>>Item. filter(Filter<Content<?>> filter)Filter content to match the test. -
Uses of Filter in io.annot8.api.filters
Classes in io.annot8.api.filters that implement Filter Modifier and Type Class Description classAndFilter<T>Logical AND of filtersclassNotFilter<T>Logical NOT of filterclassOrFilter<T>Logical OR of filtersMethods in io.annot8.api.filters that return Filter Modifier and Type Method Description default Filter<T>Filter. and(Filter<T> filter)Combine this filter with another using logical ANDFilterNotFilter. getFilter()Get all the sub filter of this operation.default Filter<T>Filter. negate()Negate this filter.default Filter<T>Filter. or(Filter<T> filter)Combine this filter with another using logical ORMethods in io.annot8.api.filters that return types with arguments of type Filter Modifier and Type Method Description Stream<Filter>AndFilter. getFilters()Get all the sub filters of this operation.Stream<Filter>OrFilter. getFilters()Get all the sub filters of this operation.Methods in io.annot8.api.filters with parameters of type Filter Modifier and Type Method Description default Filter<T>Filter. and(Filter<T> filter)Combine this filter with another using logical ANDdefault Filter<T>Filter. or(Filter<T> filter)Combine this filter with another using logical ORConstructors in io.annot8.api.filters with parameters of type Filter Constructor Description AndFilter(Filter<T>... filters)NotFilter(Filter<T> filter)OrFilter(Filter<T>... filters) -
Uses of Filter in io.annot8.api.helpers
Methods in io.annot8.api.helpers with parameters of type Filter Modifier and Type Method Description Stream<T>WithFilter. filter(Filter<T> filter)Filter to many matching elementsdefault Optional<T>WithFilter. find(Filter<T> filter)Find a single matching element -
Uses of Filter in io.annot8.api.stores
Methods in io.annot8.api.stores with parameters of type Filter Modifier and Type Method Description default Stream<Annotation>AnnotationStore. filter(Filter<Annotation> filter)Filter annotations to match the test.default Stream<Group>GroupStore. filter(Filter<Group> filter)Filter annotations to match the test.
-