Package io.micronaut.sourcegen.model
Record Class ExpressionDef.CallInstanceMethod
java.lang.Object
java.lang.Record
io.micronaut.sourcegen.model.ExpressionDef.CallInstanceMethod
- Record Components:
instance- The instancename- The method nameparameters- The parametersreturning- The returning
- All Implemented Interfaces:
ExpressionDef,StatementDef
- Enclosing interface:
- ExpressionDef
public static record ExpressionDef.CallInstanceMethod(VariableDef instance, String name, List<ExpressionDef> parameters, TypeDef returning)
extends Record
implements ExpressionDef, StatementDef
The call an instance method expression.
- Since:
- 1.0
- Author:
- Denis Stepanov
-
Nested Class Summary
Nested classes/interfaces inherited from interface io.micronaut.sourcegen.model.ExpressionDef
ExpressionDef.CallInstanceMethod, ExpressionDef.CallStaticMethod, ExpressionDef.Constant, ExpressionDef.Convert, ExpressionDef.NewInstanceNested classes/interfaces inherited from interface io.micronaut.sourcegen.model.StatementDef
StatementDef.Assign, StatementDef.DefineAndAssign, StatementDef.Return -
Constructor Summary
ConstructorsConstructorDescriptionCallInstanceMethod(VariableDef instance, MethodDef methodDef) CallInstanceMethod(VariableDef instance, String name, List<ExpressionDef> parameters, TypeDef returning) Creates an instance of aCallInstanceMethodrecord class. -
Method Summary
Modifier and TypeMethodDescriptionfinal booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.instance()Returns the value of theinstancerecord component.name()Returns the value of thenamerecord component.Returns the value of theparametersrecord component.Returns the value of thereturningrecord component.final StringtoString()Returns a string representation of this record class.type()The type of the expression.
-
Constructor Details
-
CallInstanceMethod
-
CallInstanceMethod
public CallInstanceMethod(VariableDef instance, String name, List<ExpressionDef> parameters, TypeDef returning) Creates an instance of aCallInstanceMethodrecord class.- Parameters:
instance- the value for theinstancerecord componentname- the value for thenamerecord componentparameters- the value for theparametersrecord componentreturning- the value for thereturningrecord component
-
-
Method Details
-
type
Description copied from interface:ExpressionDefThe type of the expression.- Specified by:
typein interfaceExpressionDef- Returns:
- The type
-
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). -
instance
Returns the value of theinstancerecord component.- Returns:
- the value of the
instancerecord component
-
name
Returns the value of thenamerecord component.- Returns:
- the value of the
namerecord component
-
parameters
Returns the value of theparametersrecord component.- Returns:
- the value of the
parametersrecord component
-
returning
Returns the value of thereturningrecord component.- Returns:
- the value of the
returningrecord component
-