Package org.zkoss.zul
Class ListModels
- java.lang.Object
-
- org.zkoss.zul.ListModels
-
public class ListModels extends java.lang.Object
A utility for handlingListModel
.- Since:
- 5.0.4
- Author:
- jumperchen
-
-
Field Summary
Fields Modifier and Type Field Description static java.util.Comparator
MAP_COMPARATOR
A comparator forListSubModel.getSubModel(java.lang.Object, int)
to check if a value retrieved from the model matches the user typed.static java.util.Comparator
STRING_COMPARATOR
A comparator forListSubModel.getSubModel(java.lang.Object, int)
to check if a value retrieved from the model matches the user typed.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static <T> ListModel<T>
toListSubModel(ListModel<T> model)
Returns a proxy instance of the given model that implementsListSubModel
andListModel
interface.static <T> ListModel<T>
toListSubModel(ListModel<T> model, java.util.Comparator<T> comparator, int nRows)
Returns a proxy instance of the given model that implementsListSubModel
andListModel
interface.
-
-
-
Field Detail
-
STRING_COMPARATOR
public static final java.util.Comparator STRING_COMPARATOR
A comparator forListSubModel.getSubModel(java.lang.Object, int)
to check if a value retrieved from the model matches the user typed. To compare, it will convert them to String instances, and return 0 (i.e., matched), when the value starts with the user typed, and both of them are not empty.
-
MAP_COMPARATOR
public static final java.util.Comparator MAP_COMPARATOR
A comparator forListSubModel.getSubModel(java.lang.Object, int)
to check if a value retrieved from the model matches the user typed. It assumes the model isMap
, and the value is Map.Entry. To compare, it will convert them to String instances, and return 0 when the value (Map.Entry's getValue()) starts with the user typed, and both of them are not empty.
-
-
Method Detail
-
toListSubModel
public static <T> ListModel<T> toListSubModel(ListModel<T> model, java.util.Comparator<T> comparator, int nRows)
Returns a proxy instance of the given model that implementsListSubModel
andListModel
interface.- Parameters:
model
- a modelcomparator
- used to compare the value typed by user and the value from the model. The first argument is the value typed by user, and the second argument is the value retrieved from the model. It shall return 0 if they matched (i.e., shall be shown).nRows
- the maximal allowed number of matched items.
-
toListSubModel
public static <T> ListModel<T> toListSubModel(ListModel<T> model)
Returns a proxy instance of the given model that implementsListSubModel
andListModel
interface.The default comparator depends on the type of the model, if the model is an instance of
ListModelMap
,MAP_COMPARATOR
is used. Otherwise,STRING_COMPARATOR
is used.In additions, the maximal allowed number of matched items is 15.
If you want more control, use
toListSubModel(ListModel, Comparator, int)
instead.- Parameters:
model
- aListModel
- See Also:
toListSubModel(ListModel, Comparator, int)
-
-