Record Class AtnBasedGenerator.FunctionInfo
java.lang.Object
java.lang.Record
org.ek9lang.compiler.fuzz.AtnBasedGenerator.FunctionInfo
- Enclosing class:
AtnBasedGenerator
static record AtnBasedGenerator.FunctionInfo(String name, List<AtnBasedGenerator.ParamInfo> params, String returnType, boolean isPure)
extends Record
A generated function's signature, used for constructing valid call sites.
-
Constructor Summary
ConstructorsConstructorDescriptionFunctionInfo(String name, List<AtnBasedGenerator.ParamInfo> params, String returnType, boolean isPure) Creates an instance of aFunctionInforecord class. -
Method Summary
Modifier and TypeMethodDescriptionfinal booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.booleanisPure()Returns the value of theisPurerecord component.name()Returns the value of thenamerecord component.params()Returns the value of theparamsrecord component.Returns the value of thereturnTyperecord component.final StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
FunctionInfo
FunctionInfo(String name, List<AtnBasedGenerator.ParamInfo> params, String returnType, boolean isPure) Creates an instance of aFunctionInforecord class.- Parameters:
name- the value for thenamerecord componentparams- the value for theparamsrecord componentreturnType- the value for thereturnTyperecord componentisPure- the value for theisPurerecord component
-
-
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. Reference components are compared withObjects::equals(Object,Object); primitive components are compared with thecomparemethod from their corresponding wrapper classes. -
name
Returns the value of thenamerecord component.- Returns:
- the value of the
namerecord component
-
params
Returns the value of theparamsrecord component.- Returns:
- the value of the
paramsrecord component
-
returnType
Returns the value of thereturnTyperecord component.- Returns:
- the value of the
returnTyperecord component
-
isPure
public boolean isPure()Returns the value of theisPurerecord component.- Returns:
- the value of the
isPurerecord component
-