Class SearchCompiler.Never
- java.lang.Object
-
- org.openstreetmap.josm.data.osm.search.SearchCompiler.Match
-
- org.openstreetmap.josm.data.osm.search.SearchCompiler.TaggedMatch
-
- org.openstreetmap.josm.data.osm.search.SearchCompiler.Never
-
- All Implemented Interfaces:
Predicate<OsmPrimitive>
- Enclosing class:
- SearchCompiler
public static class SearchCompiler.Never extends SearchCompiler.TaggedMatch
Never matches any OsmPrimitive.
-
-
Field Summary
Fields Modifier and Type Field Description static SearchCompiler.Never
INSTANCE
The unique instance/
-
Constructor Summary
Constructors Constructor Description Never()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
match(Tagged osm)
Tests whether the tagged object matches this criterion.-
Methods inherited from class org.openstreetmap.josm.data.osm.search.SearchCompiler.TaggedMatch
compilePattern, match
-
Methods inherited from class org.openstreetmap.josm.data.osm.search.SearchCompiler.Match
test, validate
-
-
-
-
Field Detail
-
INSTANCE
public static final SearchCompiler.Never INSTANCE
The unique instance/
-
-
Constructor Detail
-
Never
public Never()
-
-
Method Detail
-
match
public boolean match(Tagged osm)
Description copied from class:SearchCompiler.Match
Tests whether the tagged object matches this criterion.- Specified by:
match
in classSearchCompiler.TaggedMatch
- Parameters:
osm
- the tagged object to test- Returns:
- true if the tagged object matches this criterion
-
-