Package io.micronaut.sourcegen.model
Record Class VariableDef.Field
java.lang.Object
java.lang.Record
io.micronaut.sourcegen.model.VariableDef.Field
- Record Components:
instance- The instance variablename- The nametype- The type
- All Implemented Interfaces:
ExpressionDef,VariableDef
- Enclosing interface:
- VariableDef
public static record VariableDef.Field(ExpressionDef instance, String name, TypeDef type)
extends Record
implements VariableDef
The variable of a field.
- 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.Condition, ExpressionDef.Constant, ExpressionDef.Convert, ExpressionDef.IfElse, ExpressionDef.NewArrayInitialized, ExpressionDef.NewArrayOfSize, ExpressionDef.NewInstance, ExpressionDef.Switch, ExpressionDef.SwitchYieldCaseNested classes/interfaces inherited from interface io.micronaut.sourcegen.model.VariableDef
VariableDef.Field, VariableDef.Local, VariableDef.MethodParameter, VariableDef.StaticField, VariableDef.This -
Constructor Summary
ConstructorsConstructorDescriptionField(ExpressionDef instance, String name, TypeDef type) Creates an instance of aFieldrecord 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.final StringtoString()Returns a string representation of this record class.type()Returns the value of thetyperecord component.Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, waitMethods inherited from interface io.micronaut.sourcegen.model.ExpressionDef
asCondition, asConditionIf, asConditionIfElse, asConditionIfElse, asExpressionSwitch, asStatementSwitch, convert, field, field, invoke, invoke, invoke, invoke, invoke, isNonNull, isNull, newLocal, newLocal, returning, whileLoopMethods inherited from interface io.micronaut.sourcegen.model.VariableDef
assign, assign
-
Constructor Details
-
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). -
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
-
type
Returns the value of thetyperecord component.- Specified by:
typein interfaceExpressionDef- Returns:
- the value of the
typerecord component
-