Record Class MethodContext
java.lang.Object
java.lang.Record
io.micronaut.sourcegen.bytecode.MethodContext
- Record Components:
objectDef- The current object definitionmethodDef- The current method definition.locals- The localslambdaMethods- Lambda methods created by this methodisLambda- Whether this method is a lambda
-
Nested Class Summary
Nested Classes -
Constructor Summary
ConstructorsConstructorDescriptionMethodContext(@Nullable ObjectDef objectDef, MethodDef methodDef, boolean isLambda) MethodContext(@Nullable ObjectDef objectDef, MethodDef methodDef, Map<String, MethodContext.LocalData> locals, List<MethodDef> lambdaMethods, boolean isLambda) Creates an instance of aMethodContextrecord 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.booleanisLambda()Returns the value of theisLambdarecord component.Returns the value of thelambdaMethodsrecord component.locals()Returns the value of thelocalsrecord component.Returns the value of themethodDefrecord component.@Nullable ObjectDefReturns the value of theobjectDefrecord component.final StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
MethodContext
-
MethodContext
public MethodContext(@Nullable ObjectDef objectDef, MethodDef methodDef, Map<String, MethodContext.LocalData> locals, List<MethodDef> lambdaMethods, boolean isLambda) Creates an instance of aMethodContextrecord class.- Parameters:
objectDef- the value for theobjectDefrecord componentmethodDef- the value for themethodDefrecord componentlocals- the value for thelocalsrecord componentlambdaMethods- the value for thelambdaMethodsrecord componentisLambda- the value for theisLambdarecord component
-
-
Method Details
-
toString
-
hashCode
-
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 thecomparemethod from their corresponding wrapper classes. -
objectDef
-
methodDef
-
locals
-
lambdaMethods
Returns the value of thelambdaMethodsrecord component.- Returns:
- the value of the
lambdaMethodsrecord component
-
isLambda
-