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 instance
- name- The method name
- parameters- The parameters
- returningType- 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 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.SwitchYieldCaseNested classes/interfaces inherited from interface io.micronaut.sourcegen.model.StatementDefStatementDef.Assign, StatementDef.DefineAndAssign, StatementDef.If, StatementDef.IfElse, StatementDef.Multi, StatementDef.Return, StatementDef.Switch, StatementDef.Throw, StatementDef.While
- 
Constructor SummaryConstructorsConstructorDescriptionCallStaticMethod(ClassTypeDef classDef, String name, List<ExpressionDef> parameters, TypeDef returningType) Creates an instance of aCallStaticMethodrecord class.
- 
Method SummaryModifier 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.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, whileLoopMethods inherited from interface io.micronaut.sourcegen.model.StatementDefafter, flatten
- 
Constructor Details- 
CallStaticMethodpublic CallStaticMethod(ClassTypeDef classDef, String name, List<ExpressionDef> parameters, TypeDef returningType) Creates an instance of aCallStaticMethodrecord class.- Parameters:
- classDef- the value for the- classDefrecord component
- name- the value for the- namerecord component
- parameters- the value for the- parametersrecord component
- returningType- the value for the- returningTyperecord component
 
 
- 
- 
Method Details- 
typeDescription copied from interface:ExpressionDefThe type of the expression.- Specified by:
- typein interface- ExpressionDef
- Returns:
- The type
 
- 
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).
- 
classDefReturns the value of theclassDefrecord component.- Returns:
- the value of the classDefrecord component
 
- 
nameReturns the value of thenamerecord component.- Returns:
- the value of the namerecord component
 
- 
parametersReturns the value of theparametersrecord component.- Returns:
- the value of the parametersrecord component
 
- 
returningTypeReturns the value of thereturningTyperecord component.- Returns:
- the value of the returningTyperecord component
 
 
-