Record Class GN_PL_Run2.GenerateFunctionsRequest
java.lang.Object
java.lang.Record
tripleo.elijah_durable_congenial.comp.notation.GN_PL_Run2.GenerateFunctionsRequest
- Enclosing class:
- GN_PL_Run2
public static record GN_PL_Run2.GenerateFunctionsRequest(IClassGenerator classGenerator, DefaultWorldModule worldModule)
extends Record
- 
Constructor SummaryConstructorsConstructorDescriptionGenerateFunctionsRequest(IClassGenerator classGenerator, DefaultWorldModule worldModule) Creates an instance of aGenerateFunctionsRequestrecord class.
- 
Method SummaryModifier and TypeMethodDescriptionReturns the value of theclassGeneratorrecord component.final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.mod()mt()final StringtoString()Returns a string representation of this record class.Returns the value of theworldModulerecord component.
- 
Constructor Details- 
GenerateFunctionsRequestCreates an instance of aGenerateFunctionsRequestrecord class.- Parameters:
- classGenerator- the value for the- classGeneratorrecord component
- worldModule- the value for the- worldModulerecord component
 
 
- 
- 
Method Details- 
mt
- 
mod
- 
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).
- 
classGeneratorReturns the value of theclassGeneratorrecord component.- Returns:
- the value of the classGeneratorrecord component
 
- 
worldModuleReturns the value of theworldModulerecord component.- Returns:
- the value of the worldModulerecord component
 
 
-