Package io.micronaut.sourcegen.model
Record Class ExpressionDef.Switch
java.lang.Object
java.lang.Record
io.micronaut.sourcegen.model.ExpressionDef.Switch
- Record Components:
- expression- The switch expression
- type- The switch type
- cases- The cases
- All Implemented Interfaces:
- ExpressionDef
- Enclosing interface:
- ExpressionDef
public static record ExpressionDef.Switch(ExpressionDef expression, TypeDef type, Map<ExpressionDef.Constant,ExpressionDef> cases)
extends Record
implements ExpressionDef 
The switch expression.
 Note: null constant or null value represents a default case.
- Since:
- 1.2
- 
Nested Class SummaryNested classes/interfaces inherited from interface io.micronaut.sourcegen.model.ExpressionDefExpressionDef.CallInstanceMethod, ExpressionDef.CallStaticMethod, ExpressionDef.Condition, ExpressionDef.Constant, ExpressionDef.Convert, ExpressionDef.IfElse, ExpressionDef.NewArrayInitialized, ExpressionDef.NewArrayOfSize, ExpressionDef.NewInstance, ExpressionDef.Switch, ExpressionDef.SwitchYieldCase
- 
Constructor SummaryConstructorsConstructorDescriptionSwitch(ExpressionDef expression, TypeDef type, Map<ExpressionDef.Constant, ExpressionDef> cases) Creates an instance of aSwitchrecord class.
- 
Method SummaryModifier and TypeMethodDescriptioncases()Returns the value of thecasesrecord component.final booleanIndicates whether some other object is "equal to" this one.Returns the value of theexpressionrecord 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, asConditionIf, asConditionIfElse, asConditionIfElse, asExpressionSwitch, asStatementSwitch, convert, field, field, invoke, invoke, invoke, invoke, invoke, isNonNull, isNull, newLocal, newLocal, returning, whileLoop
- 
Constructor Details- 
Switchpublic Switch(ExpressionDef expression, TypeDef type, Map<ExpressionDef.Constant, ExpressionDef> cases) Creates an instance of aSwitchrecord class.- Parameters:
- expression- the value for the- expressionrecord component
- type- the value for the- typerecord component
- cases- the value for the- casesrecord 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).
- 
expressionReturns the value of theexpressionrecord component.- Returns:
- the value of the expressionrecord component
 
- 
typeReturns the value of thetyperecord component.- Specified by:
- typein interface- ExpressionDef
- Returns:
- the value of the typerecord component
 
- 
casesReturns the value of thecasesrecord component.- Returns:
- the value of the casesrecord component
 
 
-