Uses of Interface
org.zkoss.util.Converter
-
Packages that use Converter Package Description org.zkoss.stateless.state org.zkoss.util org.zkoss.zkmax.ui org.zkoss.zkmax.zul -
-
Uses of Converter in org.zkoss.stateless.state
Methods in org.zkoss.stateless.state with parameters of type Converter Modifier and Type Method Description void
ICascaderController. setItemConverter(Converter<java.util.Collection<Data>,java.lang.String> converter)
Sets the converter that generates the label text shown in the cascader from selected items.void
ISearchboxController. setItemConverter(Converter<java.util.Collection<Data>,java.lang.String> converter)
Sets the converter that generates the label text shown in the searchbox from selected items. -
Uses of Converter in org.zkoss.util
Methods in org.zkoss.util with parameters of type Converter Modifier and Type Method Description static <F,T>
java.util.Iterator<T>CollectionsX. comodifiableIterator(java.util.Collection<F> col, Converter<F,T> converter)
Returns an iterator that allows the caller to modify the collection directly (in addition to Iterator.remove()). -
Uses of Converter in org.zkoss.zkmax.ui
Classes in org.zkoss.zkmax.ui that implement Converter Modifier and Type Class Description class
GsonConverter
A Gson converter for Service Parameterclass
JacksonConverter
A Jackson Converter for Service Parameter -
Uses of Converter in org.zkoss.zkmax.zul
Methods in org.zkoss.zkmax.zul that return Converter Modifier and Type Method Description Converter<java.util.Collection<E>,java.lang.String>
Cascader. getItemConverter()
Returns the converter that generates the label text shown in the cascader from selected items, or null to use the default implementation.Converter<java.util.Collection<E>,java.lang.String>
Searchbox. getItemConverter()
Returns the converter that generates the label text shown in the searchbox from selected items, or null to use the default implementation.Methods in org.zkoss.zkmax.zul with parameters of type Converter Modifier and Type Method Description void
Cascader. setItemConverter(Converter<java.util.Collection<E>,java.lang.String> converter)
Sets the converter that generates the label text shown in the cascader from selected items.void
Searchbox. setItemConverter(Converter<java.util.Collection<E>,java.lang.String> converter)
Sets the converter that generates the label text shown in the searchbox from selected items.
-