Package org.zkoss.pivot.util
Class PivotModels
- java.lang.Object
-
- org.zkoss.pivot.util.PivotModels
-
public class PivotModels extends Object
Utility class for PivotModel- Author:
- simonpai
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static interface
PivotModels.Filter<T>
The filter interface
-
Constructor Summary
Constructors Constructor Description PivotModels()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static <T> Iterable<T>
filter(Iterable<? extends T> iterable, PivotModels.Filter<T> filter)
Return a proxy iterable object by filtering the items in the original.
-
-
-
Method Detail
-
filter
public static <T> Iterable<T> filter(Iterable<? extends T> iterable, PivotModels.Filter<T> filter)
Return a proxy iterable object by filtering the items in the original.- Parameters:
filter
- the filter.- Returns:
- the filtered iterable object
-
-