Package io.jmix.restds.impl
Record Class RestInvoker.LoadListParams
java.lang.Object
java.lang.Record
io.jmix.restds.impl.RestInvoker.LoadListParams
- Enclosing class:
- RestInvoker
-
Constructor Summary
ConstructorsConstructorDescriptionLoadListParams(String entityName, int limit, int offset, String sort, String filter, String fetchPlanName) Creates an instance of aLoadListParamsrecord class.LoadListParams(String entityName, String filter) -
Method Summary
Modifier and TypeMethodDescriptionReturns the value of theentityNamerecord component.final booleanIndicates whether some other object is "equal to" this one.Returns the value of thefetchPlanNamerecord component.filter()Returns the value of thefilterrecord component.final inthashCode()Returns a hash code value for this object.intlimit()Returns the value of thelimitrecord component.intoffset()Returns the value of theoffsetrecord component.sort()Returns the value of thesortrecord component.final StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
LoadListParams
-
LoadListParams
public LoadListParams(String entityName, int limit, int offset, @Nullable String sort, @Nullable String filter, @Nullable String fetchPlanName) Creates an instance of aLoadListParamsrecord class.- Parameters:
entityName- the value for theentityNamerecord componentlimit- the value for thelimitrecord componentoffset- the value for theoffsetrecord componentsort- the value for thesortrecord componentfilter- the value for thefilterrecord componentfetchPlanName- the value for thefetchPlanNamerecord component
-
-
Method Details
-
toString
Returns a string representation of this record class. The representation contains the name of the class, followed by the name and value of each of the record components. -
hashCode
public final int hashCode()Returns a hash code value for this object. The value is derived from the hash code of each of the record components. -
equals
Indicates whether some other object is "equal to" this one. The objects are equal if the other object is of the same class and if all the record components are equal. Reference components are compared withObjects::equals(Object,Object); primitive components are compared with '=='. -
entityName
Returns the value of theentityNamerecord component.- Returns:
- the value of the
entityNamerecord component
-
limit
public int limit()Returns the value of thelimitrecord component.- Returns:
- the value of the
limitrecord component
-
offset
public int offset()Returns the value of theoffsetrecord component.- Returns:
- the value of the
offsetrecord component
-
sort
Returns the value of thesortrecord component.- Returns:
- the value of the
sortrecord component
-
filter
Returns the value of thefilterrecord component.- Returns:
- the value of the
filterrecord component
-
fetchPlanName
Returns the value of thefetchPlanNamerecord component.- Returns:
- the value of the
fetchPlanNamerecord component
-