Class FilterSortPageHelper.Builder<T>
java.lang.Object
com.inductiveautomation.ignition.gateway.dataroutes.FilterSortPageHelper.Builder<T>
- Enclosing class:
- FilterSortPageHelper<T>
-
Method Summary
-
Method Details
-
limit
Used to limit the resulting item set to the given number. By default, this will be set to -1, meaning no limit. -
offset
Used to skip the first N items, most often used for paging. By default, this is set to zero. -
search
-
sortBy
Add a sorted field. The field's value must be aComparable
.- Parameters:
fieldName
- The name of the field. The field resolver will be used to extract the field value from object instances.asc
- True means ascending, False means descending.
-
filter
public FilterSortPageHelper.Builder<T> filter(String fieldName, FilterSortPageHelper.Operator operator, Object test) -
build
-