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
ConstructorDescriptionLoadListParams
(String entityName, int limit, int offset, String sort, String filter, String fetchPlanName) Creates an instance of aLoadListParams
record class.LoadListParams
(String entityName, String filter) -
Method Summary
Modifier and TypeMethodDescriptionReturns the value of theentityName
record component.final boolean
Indicates whether some other object is "equal to" this one.Returns the value of thefetchPlanName
record component.filter()
Returns the value of thefilter
record component.final int
hashCode()
Returns a hash code value for this object.int
limit()
Returns the value of thelimit
record component.int
offset()
Returns the value of theoffset
record component.sort()
Returns the value of thesort
record component.final String
toString()
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 aLoadListParams
record class.- Parameters:
entityName
- the value for theentityName
record componentlimit
- the value for thelimit
record componentoffset
- the value for theoffset
record componentsort
- the value for thesort
record componentfilter
- the value for thefilter
record componentfetchPlanName
- the value for thefetchPlanName
record 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 theentityName
record component.- Returns:
- the value of the
entityName
record component
-
limit
public int limit()Returns the value of thelimit
record component.- Returns:
- the value of the
limit
record component
-
offset
public int offset()Returns the value of theoffset
record component.- Returns:
- the value of the
offset
record component
-
sort
Returns the value of thesort
record component.- Returns:
- the value of the
sort
record component
-
filter
Returns the value of thefilter
record component.- Returns:
- the value of the
filter
record component
-
fetchPlanName
Returns the value of thefetchPlanName
record component.- Returns:
- the value of the
fetchPlanName
record component
-