Class Projects.QueryRequest

  • Enclosing interface:
    Projects

    public abstract static class Projects.QueryRequest
    extends Object
    API for setting parameters and getting result. Used for query().
    See Also:
    Projects.query()
    • Constructor Detail

      • QueryRequest

        public QueryRequest()
    • Method Detail

      • withQuery

        public Projects.QueryRequest withQuery​(String query)
        Set query.
        Parameters:
        query - needs to be in human-readable form.
      • withLimit

        public Projects.QueryRequest withLimit​(int limit)
        Set limit for returned list of projects. Optional; server-default is used when not provided.
      • withStart

        public Projects.QueryRequest withStart​(int start)
        Set number of projects to skip. Optional; no projects are skipped when not provided.
      • getQuery

        public String getQuery()
      • getLimit

        public int getLimit()
      • getStart

        public int getStart()