Interface ProjectQueryBuilder
-
- All Known Implementing Classes:
ProjectQueryBuilderImpl
public interface ProjectQueryBuilder
Provides methods required for parsing projects queries.Internally (at google), this interface has a different implementation, comparing to upstream.
-
-
Field Summary
Fields Modifier and Type Field Description static String
FIELD_LIMIT
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Predicate<com.google.gerrit.index.project.ProjectData>
parse(String query)
List<Predicate<com.google.gerrit.index.project.ProjectData>>
parse(List<String> queries)
-
-
-
Field Detail
-
FIELD_LIMIT
static final String FIELD_LIMIT
- See Also:
- Constant Field Values
-
-
Method Detail
-
parse
Predicate<com.google.gerrit.index.project.ProjectData> parse(String query) throws QueryParseException
- Throws:
QueryParseException
-
parse
List<Predicate<com.google.gerrit.index.project.ProjectData>> parse(List<String> queries) throws QueryParseException
- Throws:
QueryParseException
-
-