Uses of Interface
com.vaadin.data.Container.Filter
-
Packages that use Container.Filter Package Description com.vaadin.data Contains interfaces for the data layer, mainly for binding typed data and data collections to components, and for validating data.com.vaadin.data.util Provides implementations of Property, Item and Container interfaces, and utilities for the data layer.com.vaadin.data.util.filter com.vaadin.data.util.sqlcontainer com.vaadin.data.util.sqlcontainer.query com.vaadin.data.util.sqlcontainer.query.generator com.vaadin.data.util.sqlcontainer.query.generator.filter com.vaadin.ui -
-
Uses of Container.Filter in com.vaadin.data
Methods in com.vaadin.data that return types with arguments of type Container.Filter Modifier and Type Method Description Collection<Container.Filter>Container.Filterable. getContainerFilters()Returns the filters which have been applied to the containerMethods in com.vaadin.data with parameters of type Container.Filter Modifier and Type Method Description voidContainer.Filterable. addContainerFilter(Container.Filter filter)Adds a filter for the container.voidContainer.Filterable. removeContainerFilter(Container.Filter filter)Removes a filter from the container. -
Uses of Container.Filter in com.vaadin.data.util
Methods in com.vaadin.data.util that return Container.Filter Modifier and Type Method Description Container.FilterPropertyValueGenerator. modifyFilter(Container.Filter filter)Return an updated filter that should be compatible with the underlying container.Methods in com.vaadin.data.util that return types with arguments of type Container.Filter Modifier and Type Method Description Collection<Container.Filter>AbstractBeanContainer. getContainerFilters()protected Collection<Container.Filter>AbstractInMemoryContainer. getContainerFilters()Collection<Container.Filter>GeneratedPropertyContainer. getContainerFilters()Collection<Container.Filter>IndexedContainer. getContainerFilters()protected Set<Container.Filter>AbstractInMemoryContainer. getFilters()Returns the internal collection of filters.protected Collection<Container.Filter>AbstractInMemoryContainer. removeFilters(Object propertyId)Remove all container filters for a given property identifier and re-filter the view.Methods in com.vaadin.data.util with parameters of type Container.Filter Modifier and Type Method Description voidAbstractBeanContainer. addContainerFilter(Container.Filter filter)voidGeneratedPropertyContainer. addContainerFilter(Container.Filter filter)voidIndexedContainer. addContainerFilter(Container.Filter filter)protected voidAbstractInMemoryContainer. addFilter(Container.Filter filter)Adds a container filter and re-filter the view.Container.FilterPropertyValueGenerator. modifyFilter(Container.Filter filter)Return an updated filter that should be compatible with the underlying container.voidAbstractBeanContainer. removeContainerFilter(Container.Filter filter)voidGeneratedPropertyContainer. removeContainerFilter(Container.Filter filter)voidIndexedContainer. removeContainerFilter(Container.Filter filter)protected voidAbstractInMemoryContainer. removeFilter(Container.Filter filter)Remove a specific container filter and re-filter the view (if necessary).Method parameters in com.vaadin.data.util with type arguments of type Container.Filter Modifier and Type Method Description protected voidAbstractInMemoryContainer. setFilters(Set<Container.Filter> filters)Set the internal collection of filters without performing filtering. -
Uses of Container.Filter in com.vaadin.data.util.filter
Classes in com.vaadin.data.util.filter that implement Container.Filter Modifier and Type Class Description classAbstractJunctionFilterAbstract base class for filters that are composed of multiple sub-filters.classAndA compoundContainer.Filterthat accepts an item if all of its filters accept the item.classBetweenclassCompareSimple container filter comparing an item property value against a given constant value.static classCompare.EqualAComparefilter that accepts items for which the identified property value is equal tovalue.static classCompare.GreaterAComparefilter that accepts items for which the identified property value is greater thanvalue.static classCompare.GreaterOrEqualAComparefilter that accepts items for which the identified property value is greater than or equal tovalue.static classCompare.LessAComparefilter that accepts items for which the identified property value is less thanvalue.static classCompare.LessOrEqualAComparefilter that accepts items for which the identified property value is less than or equal tovalue.classIsNullSimple container filter checking whether an item property value is null.classLikeclassNotNegating filter that accepts the items rejected by another filter.classOrA compoundContainer.Filterthat accepts an item if any of its filters accept the item.classSimpleStringFilterSimple string filter for matching items that start with or contain a specified string.Fields in com.vaadin.data.util.filter with type parameters of type Container.Filter Modifier and Type Field Description protected Collection<Container.Filter>AbstractJunctionFilter. filtersMethods in com.vaadin.data.util.filter that return Container.Filter Modifier and Type Method Description Container.FilterNot. getFilter()Returns the negated filter.Methods in com.vaadin.data.util.filter that return types with arguments of type Container.Filter Modifier and Type Method Description Collection<Container.Filter>AbstractJunctionFilter. getFilters()Returns an unmodifiable collection of the sub-filters of this composite filter.Constructors in com.vaadin.data.util.filter with parameters of type Container.Filter Constructor Description AbstractJunctionFilter(Container.Filter... filters)And(Container.Filter... filters)Not(Container.Filter filter)Constructs a filter that negates a filter.Or(Container.Filter... filters) -
Uses of Container.Filter in com.vaadin.data.util.sqlcontainer
Methods in com.vaadin.data.util.sqlcontainer that return types with arguments of type Container.Filter Modifier and Type Method Description Collection<Container.Filter>SQLContainer. getContainerFilters()Methods in com.vaadin.data.util.sqlcontainer with parameters of type Container.Filter Modifier and Type Method Description voidSQLContainer. addContainerFilter(Container.Filter filter)Adds a filter for the container.voidSQLContainer. removeContainerFilter(Container.Filter filter)Removes a filter from the container. -
Uses of Container.Filter in com.vaadin.data.util.sqlcontainer.query
Method parameters in com.vaadin.data.util.sqlcontainer.query with type arguments of type Container.Filter Modifier and Type Method Description voidFreeformQuery. setFilters(List<Container.Filter> filters)voidFreeformQueryDelegate. setFilters(List<Container.Filter> filters)Sets the filters to apply when performing the SQL query.voidQueryDelegate. setFilters(List<Container.Filter> filters)Sets the filters to apply when performing the SQL query.voidTableQuery. setFilters(List<Container.Filter> filters) -
Uses of Container.Filter in com.vaadin.data.util.sqlcontainer.query.generator
Method parameters in com.vaadin.data.util.sqlcontainer.query.generator with type arguments of type Container.Filter Modifier and Type Method Description StatementHelperDefaultSQLGenerator. generateSelectQuery(String tableName, List<Container.Filter> filters, List<OrderBy> orderBys, int offset, int pagelength, String toSelect)StatementHelperMSSQLGenerator. generateSelectQuery(String tableName, List<Container.Filter> filters, List<OrderBy> orderBys, int offset, int pagelength, String toSelect)StatementHelperOracleGenerator. generateSelectQuery(String tableName, List<Container.Filter> filters, List<OrderBy> orderBys, int offset, int pagelength, String toSelect)StatementHelperSQLGenerator. generateSelectQuery(String tableName, List<Container.Filter> filters, List<OrderBy> orderBys, int offset, int pagelength, String toSelect)Generates a SELECT query with the provided parameters. -
Uses of Container.Filter in com.vaadin.data.util.sqlcontainer.query.generator.filter
Method parameters in com.vaadin.data.util.sqlcontainer.query.generator.filter with type arguments of type Container.Filter Modifier and Type Method Description static StringQueryBuilder. getJoinedFilterString(Collection<Container.Filter> filters, String joinString, StatementHelper sh)static StringQueryBuilder. getWhereStringForFilters(List<Container.Filter> filters, StatementHelper sh) -
Uses of Container.Filter in com.vaadin.ui
Methods in com.vaadin.ui that return Container.Filter Modifier and Type Method Description protected Container.FilterComboBox. buildFilter(String filterString, FilteringMode filteringMode)Constructs a filter instance to use when using a Filterable container in theITEM_CAPTION_MODE_PROPERTYmode.
-