Class Changes.QueryRequest
- java.lang.Object
- 
- com.google.gerrit.extensions.api.changes.Changes.QueryRequest
 
- 
- 
Constructor SummaryConstructors Constructor Description QueryRequest()
 - 
Method SummaryAll Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description abstract List<ChangeInfo>get()intgetLimit()EnumSet<ListChangesOption>getOptions()StringgetQuery()intgetStart()StringtoString()Changes.QueryRequestwithLimit(int limit)Changes.QueryRequestwithOption(ListChangesOption options)Set an option on the request, appending to existing options.Changes.QueryRequestwithOptions(ListChangesOption... options)Set options on the request, appending to existing options.Changes.QueryRequestwithOptions(EnumSet<ListChangesOption> options)Set options on the request, replacing existing options.Changes.QueryRequestwithQuery(String query)Changes.QueryRequestwithStart(int start)
 
- 
- 
- 
Method Detail- 
getpublic abstract List<ChangeInfo> get() throws RestApiException - Throws:
- RestApiException
 
 - 
withQuerypublic Changes.QueryRequest withQuery(String query) 
 - 
withLimitpublic Changes.QueryRequest withLimit(int limit) 
 - 
withStartpublic Changes.QueryRequest withStart(int start) 
 - 
withOptionpublic Changes.QueryRequest withOption(ListChangesOption options) Set an option on the request, appending to existing options.
 - 
withOptionspublic Changes.QueryRequest withOptions(ListChangesOption... options) Set options on the request, appending to existing options.
 - 
withOptionspublic Changes.QueryRequest withOptions(EnumSet<ListChangesOption> options) Set options on the request, replacing existing options.
 - 
getQuerypublic String getQuery() 
 - 
getLimitpublic int getLimit() 
 - 
getStartpublic int getStart() 
 - 
getOptionspublic EnumSet<ListChangesOption> getOptions() 
 
- 
 
-