Package io.micronaut.sourcegen.model
Record Class ExpressionDef.CallStaticMethod
java.lang.Object
java.lang.Record
io.micronaut.sourcegen.model.ExpressionDef.CallStaticMethod
- Record Components:
classDef- The instancename- The method nameparameters- The parametersreturningType- The returning
- All Implemented Interfaces:
ExpressionDef,StatementDef
- Enclosing interface:
- ExpressionDef
public static record ExpressionDef.CallStaticMethod(ClassTypeDef classDef, String name, List<ExpressionDef> parameters, TypeDef returningType)
extends Record
implements ExpressionDef, StatementDef
The call a static method expression.
- 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.StatementDef
StatementDef.Assign, StatementDef.DefineAndAssign, StatementDef.If, StatementDef.IfElse, StatementDef.Multi, StatementDef.Return, StatementDef.Switch, StatementDef.Throw, StatementDef.While -
Constructor Summary
ConstructorsConstructorDescriptionCallStaticMethod(ClassTypeDef classDef, String name, List<ExpressionDef> parameters, TypeDef returningType) Creates an instance of aCallStaticMethodrecord class. -
Method Summary
Modifier and TypeMethodDescriptionclassDef()Returns the value of theclassDefrecord component.final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.name()Returns the value of thenamerecord component.Returns the value of theparametersrecord component.Returns the value of thereturningTyperecord component.final StringtoString()Returns a string representation of this record class.type()The type of the expression.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.StatementDef
after, flatten
-
Constructor Details
-
CallStaticMethod
public CallStaticMethod(ClassTypeDef classDef, String name, List<ExpressionDef> parameters, TypeDef returningType) Creates an instance of aCallStaticMethodrecord class.- Parameters:
classDef- the value for theclassDefrecord componentname- the value for thenamerecord componentparameters- the value for theparametersrecord componentreturningType- the value for thereturningTyperecord component
-
-
Method Details
-
type
Description copied from interface:ExpressionDefThe type of the expression.- Specified by:
typein interfaceExpressionDef- Returns:
- The type
-
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). -
classDef
Returns the value of theclassDefrecord component.- Returns:
- the value of the
classDefrecord component
-
name
Returns the value of thenamerecord component.- Returns:
- the value of the
namerecord component
-
parameters
Returns the value of theparametersrecord component.- Returns:
- the value of the
parametersrecord component
-
returningType
Returns the value of thereturningTyperecord component.- Returns:
- the value of the
returningTyperecord component
-