Package io.micronaut.sourcegen.model
Record Class ExpressionDef.Convert
java.lang.Object
java.lang.Record
io.micronaut.sourcegen.model.ExpressionDef.Convert
- Record Components:
- type- The type
- expressionDef- The expression reference
- All Implemented Interfaces:
- ExpressionDef
- Enclosing interface:
- ExpressionDef
public static record ExpressionDef.Convert(TypeDef type, ExpressionDef expressionDef)
extends Record
implements ExpressionDef
The convert variable expression. (To support Kotlin's nullable -> not-null conversion)
- Since:
- 1.0
- Author:
- Denis Stepanov
- 
Nested Class SummaryNested classes/interfaces inherited from interface io.micronaut.sourcegen.model.ExpressionDefExpressionDef.And, ExpressionDef.CallInstanceMethod, ExpressionDef.CallStaticMethod, ExpressionDef.Cast, ExpressionDef.Condition, ExpressionDef.Constant, ExpressionDef.Convert, ExpressionDef.EqualsReferentially, ExpressionDef.EqualsStructurally, ExpressionDef.GetPropertyValue, ExpressionDef.IfElse, ExpressionDef.InvokeGetClassMethod, ExpressionDef.InvokeHashCodeMethod, ExpressionDef.NewArrayInitialized, ExpressionDef.NewArrayOfSize, ExpressionDef.NewInstance, ExpressionDef.Or, ExpressionDef.Switch, ExpressionDef.SwitchYieldCase
- 
Constructor SummaryConstructorsConstructorDescriptionConvert(TypeDef type, ExpressionDef expressionDef) Creates an instance of aConvertrecord class.
- 
Method SummaryModifier and TypeMethodDescriptionfinal booleanIndicates whether some other object is "equal to" this one.Returns the value of theexpressionDefrecord component.final inthashCode()Returns a hash code value for this object.final StringtoString()Returns a string representation of this record class.type()Returns the value of thetyperecord component.Methods inherited from class java.lang.Objectclone, finalize, getClass, notify, notifyAll, wait, wait, waitMethods inherited from interface io.micronaut.sourcegen.model.ExpressionDefasCondition, asConditionAnd, asConditionIf, asConditionIfElse, asConditionIfElse, asConditionOr, asExpressionSwitch, asStatementSwitch, cast, convert, equalsReferentially, equalsStructurally, field, field, getPropertyValue, invoke, invoke, invoke, invoke, invoke, invokeGetClass, invokeHashCode, isNonNull, isNull, newLocal, newLocal, returning, whileLoop
- 
Constructor Details- 
ConvertCreates an instance of aConvertrecord class.- Parameters:
- type- the value for the- typerecord component
- expressionDef- the value for the- expressionDefrecord component
 
 
- 
- 
Method Details- 
toStringReturns 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.
- 
hashCodepublic 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.
- 
equalsIndicates 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).
- 
typeReturns the value of thetyperecord component.- Specified by:
- typein interface- ExpressionDef
- Returns:
- the value of the typerecord component
 
- 
expressionDefReturns the value of theexpressionDefrecord component.- Returns:
- the value of the expressionDefrecord component
 
 
-