Package io.micronaut.sourcegen.model
Record Class StatementDef.Try
java.lang.Object
java.lang.Record
io.micronaut.sourcegen.model.StatementDef.Try
- Record Components:
statement
- The try statementcatches
- The catchesfinallyStatement
- The finally statement
- All Implemented Interfaces:
StatementDef
- Enclosing interface:
- StatementDef
public static record StatementDef.Try(StatementDef statement, List<StatementDef.Try.Catch> catches, @Nullable StatementDef finallyStatement)
extends Record
implements StatementDef
The try statement.
- Since:
- 1.5
-
Nested Class Summary
Nested classes/interfaces inherited from interface io.micronaut.sourcegen.model.StatementDef
StatementDef.Assign, StatementDef.DefineAndAssign, StatementDef.If, StatementDef.IfElse, StatementDef.Multi, StatementDef.PutField, StatementDef.PutStaticField, StatementDef.Return, StatementDef.Switch, StatementDef.Synchronized, StatementDef.Throw, StatementDef.Try, StatementDef.While
-
Constructor Summary
ConstructorDescriptionTry
(StatementDef statement) Try
(StatementDef statement, List<StatementDef.Try.Catch> catches, @Nullable StatementDef finallyStatement) Creates an instance of aTry
record class. -
Method Summary
Modifier and TypeMethodDescriptioncatches()
Returns the value of thecatches
record component.doCatch
(ClassTypeDef exception, Function<VariableDef.ExceptionVar, StatementDef> catchBlock) doCatch
(Class<?> exception, Function<VariableDef.ExceptionVar, StatementDef> catchBlock) doFinally
(StatementDef finallyStatement) final boolean
Indicates whether some other object is "equal to" this one.@Nullable StatementDef
Returns the value of thefinallyStatement
record component.final int
hashCode()
Returns a hash code value for this object.Returns the value of thestatement
record component.final String
toString()
Returns a string representation of this record class.Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
Methods inherited from interface io.micronaut.sourcegen.model.StatementDef
after, doTry, flatten
-
Constructor Details
-
Try
-
Try
public Try(StatementDef statement, List<StatementDef.Try.Catch> catches, @Nullable @Nullable StatementDef finallyStatement) Creates an instance of aTry
record class.- Parameters:
statement
- the value for thestatement
record componentcatches
- the value for thecatches
record componentfinallyStatement
- the value for thefinallyStatement
record component
-
-
Method Details
-
doCatch
public StatementDef.Try doCatch(Class<?> exception, Function<VariableDef.ExceptionVar, StatementDef> catchBlock) -
doCatch
public StatementDef.Try doCatch(ClassTypeDef exception, Function<VariableDef.ExceptionVar, StatementDef> catchBlock) -
doFinally
-
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)
. -
statement
Returns the value of thestatement
record component.- Returns:
- the value of the
statement
record component
-
catches
Returns the value of thecatches
record component.- Returns:
- the value of the
catches
record component
-
finallyStatement
Returns the value of thefinallyStatement
record component.- Returns:
- the value of the
finallyStatement
record component
-