Package com.vaadin.v7.ui
Interface AbstractSelect.Filtering
-
- All Superinterfaces:
Serializable
- Enclosing class:
- AbstractSelect
@Deprecated public static interface AbstractSelect.Filtering extends Serializable
Deprecated.Interface for option filtering, used to filter options based on user entered value. The value is matched to the item caption.FilteringMode.OFF(0) turns the filtering off.FilteringMode.STARTSWITH(1) matches from the start of the caption.FilteringMode.CONTAINS(1) matches anywhere in the caption.
-
-
Field Summary
Fields Modifier and Type Field Description static FilteringModeFILTERINGMODE_CONTAINSDeprecated.As of 7.0, useFilteringMode.CONTAINSinsteadstatic FilteringModeFILTERINGMODE_OFFDeprecated.As of 7.0, useFilteringMode.OFFinsteadstatic FilteringModeFILTERINGMODE_STARTSWITHDeprecated.As of 7.0, useFilteringMode.STARTSWITHinstead
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description FilteringModegetFilteringMode()Deprecated.Gets the current filtering mode.voidsetFilteringMode(FilteringMode filteringMode)Deprecated.Sets the option filtering mode.
-
-
-
Field Detail
-
FILTERINGMODE_OFF
@Deprecated static final FilteringMode FILTERINGMODE_OFF
Deprecated.As of 7.0, useFilteringMode.OFFinstead
-
FILTERINGMODE_STARTSWITH
@Deprecated static final FilteringMode FILTERINGMODE_STARTSWITH
Deprecated.As of 7.0, useFilteringMode.STARTSWITHinstead
-
FILTERINGMODE_CONTAINS
@Deprecated static final FilteringMode FILTERINGMODE_CONTAINS
Deprecated.As of 7.0, useFilteringMode.CONTAINSinstead
-
-
Method Detail
-
setFilteringMode
void setFilteringMode(FilteringMode filteringMode)
Deprecated.Sets the option filtering mode.- Parameters:
filteringMode- the filtering mode to use
-
getFilteringMode
FilteringMode getFilteringMode()
Deprecated.Gets the current filtering mode.- Returns:
- the filtering mode in use
-
-