Package com.vaadin.ui
Interface ItemCollapseAllowedProvider<T>
-
- Type Parameters:
T
- item data type
- All Superinterfaces:
Predicate<T>
,Serializable
,SerializablePredicate<T>
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
@FunctionalInterface public interface ItemCollapseAllowedProvider<T> extends SerializablePredicate<T>
A callback interface for resolving whether client-side collapsing should be allowed for an item in a listing component that displays hierarchical data, such asTreeGrid
.- Since:
- 8.1
- Author:
- Vaadin Ltd
- See Also:
TreeGrid.setItemCollapseAllowedProvider(ItemCollapseAllowedProvider)
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description boolean
test(T item)
Returns whether collapsing is allowed for the given item.-
Methods inherited from interface com.vaadin.server.SerializablePredicate
and, negate, or
-
-