Package com.vaadin.flow.templatemodel
Class PropertyFilter
java.lang.Object
com.vaadin.flow.templatemodel.PropertyFilter
Deprecated.
Property name filter that supports composition for resolving sub properties.
- Since:
- 1.0
- Author:
- Vaadin Ltd
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final PropertyFilterDeprecated.An unwrapped filter that accepts all property names. -
Constructor Summary
ConstructorsConstructorDescriptionPropertyFilter(PropertyFilter outerFilter, String scopeName) Deprecated.Creates a new filter by adapting a filter from an outer scope.PropertyFilter(PropertyFilter outerFilter, String scopeName, Predicate<String> predicate) Deprecated.Creates a new filter by combining a predicate with a filter for an outer scope.PropertyFilter(Predicate<String> predicate) Deprecated.Creates a new unwrapped filter from the given predicate. -
Method Summary
-
Field Details
-
ACCEPT_ALL
Deprecated.An unwrapped filter that accepts all property names.
-
-
Constructor Details
-
PropertyFilter
Deprecated.Creates a new unwrapped filter from the given predicate.- Parameters:
predicate- the predicate to use for this filter, notnull
-
PropertyFilter
Deprecated.Creates a new filter by combining a predicate with a filter for an outer scope.- Parameters:
outerFilter- the filter of the outer scope, notnullscopeName- the name used in the outer filter when referencing properties in the inner scope, notnullpredicate- a predicate matching property names in the inner scope
-
PropertyFilter
Deprecated.Creates a new filter by adapting a filter from an outer scope.- Parameters:
outerFilter- the filter of the outer scope, notnullscopeName- the name used in the outer filter when referencing properties in the inner scope, notnull
-
-
Method Details
LitTemplateinstead. Read more details from the Vaadin blog.