Record Class AtnBasedGenerator.MethodInfo
java.lang.Object
java.lang.Record
org.ek9lang.compiler.fuzz.AtnBasedGenerator.MethodInfo
- Enclosing class:
AtnBasedGenerator
-
Constructor Summary
ConstructorsConstructorDescriptionMethodInfo(String name, List<AtnBasedGenerator.ParamInfo> params, String returnType, String access, boolean isPure) Creates an instance of aMethodInforecord class. -
Method Summary
Modifier and TypeMethodDescriptionaccess()Returns the value of theaccessrecord component.final 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
-
MethodInfo
MethodInfo(String name, List<AtnBasedGenerator.ParamInfo> params, String returnType, String access, boolean isPure) Creates an instance of aMethodInforecord class.- Parameters:
name- the value for thenamerecord componentparams- the value for theparamsrecord componentreturnType- the value for thereturnTyperecord componentaccess- the value for theaccessrecord 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
-
access
Returns the value of theaccessrecord component.- Returns:
- the value of the
accessrecord component
-
isPure
public boolean isPure()Returns the value of theisPurerecord component.- Returns:
- the value of the
isPurerecord component
-