Package io.jmix.restds.impl
Record Class RestInvoker.LoadParams
java.lang.Object
java.lang.Record
io.jmix.restds.impl.RestInvoker.LoadParams
- Enclosing class:
- RestInvoker
-
Constructor Summary
ConstructorDescriptionLoadParams
(String entityName, Object id) LoadParams
(String entityName, Object id, String fetchPlanName) Creates an instance of aLoadParams
record class. -
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.final int
hashCode()
Returns a hash code value for this object.id()
Returns the value of theid
record component.final String
toString()
Returns a string representation of this record class.
-
Constructor Details
-
LoadParams
-
LoadParams
Creates an instance of aLoadParams
record class.- Parameters:
entityName
- the value for theentityName
record componentid
- the value for theid
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. All components in this record class are compared withObjects::equals(Object,Object)
. -
entityName
Returns the value of theentityName
record component.- Returns:
- the value of the
entityName
record component
-
id
Returns the value of theid
record component.- Returns:
- the value of the
id
record component
-
fetchPlanName
Returns the value of thefetchPlanName
record component.- Returns:
- the value of the
fetchPlanName
record component
-