![JAR search and dependency download from the Maven repository](/logo.png)
com.labstack.SearchParameters Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of labstack-java Show documentation
Show all versions of labstack-java Show documentation
Official Java client library for the LabStack REST API
The newest version!
package com.labstack;
import java.util.List;
public class SearchParameters {
String query;
String queryString;
String since;
List sort;
int size;
int from;
public SearchParameters setQuery(String query) {
this.query = query;
return this;
}
public SearchParameters setQueryString(String queryString) {
this.queryString = queryString;
return this;
}
public SearchParameters setSince(String since) {
this.since = since;
return this;
}
public SearchParameters setSort(List sort) {
this.sort = sort;
return this;
}
public SearchParameters setSize(int size) {
this.size = size;
return this;
}
public SearchParameters setFrom(int from) {
this.from = from;
return this;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy