Interface SearchCompiler.UnaryMatchFactory
-
- All Superinterfaces:
SearchCompiler.MatchFactory
- All Known Implementing Classes:
SearchCompiler.CoreUnaryMatchFactory
- Enclosing class:
- SearchCompiler
public static interface SearchCompiler.UnaryMatchFactory extends SearchCompiler.MatchFactory
A factory for gettingSearchCompiler.UnaryMatch
objects
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description SearchCompiler.UnaryMatch
get(java.lang.String keyword, SearchCompiler.Match matchOperand, PushbackTokenizer tokenizer)
Get theSearchCompiler.UnaryMatch
object-
Methods inherited from interface org.openstreetmap.josm.data.osm.search.SearchCompiler.MatchFactory
getKeywords
-
-
-
-
Method Detail
-
get
SearchCompiler.UnaryMatch get(java.lang.String keyword, SearchCompiler.Match matchOperand, PushbackTokenizer tokenizer) throws SearchParseError
Get theSearchCompiler.UnaryMatch
object- Parameters:
keyword
- The keyword to get/create the correctSearchCompiler.UnaryMatch
objectmatchOperand
- May be used to construct theSearchCompiler.UnaryMatch
objecttokenizer
- May be used to construct theSearchCompiler.UnaryMatch
object- Returns:
- The
SearchCompiler.UnaryMatch
object for the keyword and its arguments - Throws:
SearchParseError
- If theSearchCompiler.UnaryMatch
object could not be constructed.
-
-