Record Class StatementDef.Try.Catch
java.lang.Object
java.lang.Record
io.micronaut.sourcegen.model.StatementDef.Try.Catch
- Record Components:
exception- The exceptionstatement- The catch statement
- Enclosing class:
StatementDef.Try
public static record StatementDef.Try.Catch(ClassTypeDef exception, StatementDef statement)
extends Record
The catch.
- Since:
- 1.2
- Author:
- Denis Stepanov
-
Constructor Summary
ConstructorsConstructorDescriptionCatch(ClassTypeDef exception, StatementDef statement) Creates an instance of aCatchrecord class. -
Method Summary
Modifier and TypeMethodDescriptionfinal booleanIndicates whether some other object is "equal to" this one.Returns the value of theexceptionrecord component.final inthashCode()Returns a hash code value for this object.Returns the value of thestatementrecord component.final StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
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. All components in this record class are compared withObjects::equals(Object,Object). -
exception
-
statement
-