Package org.openstreetmap.josm.data.osm
Class Filter.FilterPreferenceEntry
- java.lang.Object
-
- org.openstreetmap.josm.data.osm.Filter.FilterPreferenceEntry
-
- Enclosing class:
- Filter
public static class Filter.FilterPreferenceEntry extends java.lang.Object
The class for storing and retrieving a filter from a preference entry
-
-
Field Summary
Fields Modifier and Type Field Description boolean
case_sensitive
boolean
enable
Enabled status.boolean
hiding
If this option is activated, the chosen objects are completely hidden.boolean
inverted
Normally, the specified objects are hidden and the rest is shown.boolean
mapCSS_search
java.lang.String
mode
Mode selector which defines how a filter is combined with the previous one: replace: replace selection add: add to selection remove: remove from selection in_selection: find in selectionboolean
regex_search
java.lang.String
text
java.lang.String
version
SeeFilter.version
-
Constructor Summary
Constructors Constructor Description FilterPreferenceEntry()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(java.lang.Object obj)
int
hashCode()
-
-
-
Field Detail
-
version
public java.lang.String version
SeeFilter.version
-
text
public java.lang.String text
-
mode
public java.lang.String mode
Mode selector which defines how a filter is combined with the previous one:- replace: replace selection
- add: add to selection
- remove: remove from selection
- in_selection: find in selection
- See Also:
SearchMode
-
case_sensitive
public boolean case_sensitive
-
regex_search
public boolean regex_search
-
mapCSS_search
public boolean mapCSS_search
-
enable
public boolean enable
Enabled status.- See Also:
Filter.enable
-
hiding
public boolean hiding
If this option is activated, the chosen objects are completely hidden. Otherwise they are disabled and shown in a shade of gray.- See Also:
Filter.hiding
-
inverted
public boolean inverted
Normally, the specified objects are hidden and the rest is shown. If this option is activated, only the specified objects are shown and the rest is hidden.- See Also:
Filter.inverted
-
-
Constructor Detail
-
FilterPreferenceEntry
public FilterPreferenceEntry()
-
-