Record Class CompilerBeginning
java.lang.Object
java.lang.Record
tripleo.elijah_durable_congenial.comp.internal.CompilerBeginning
public record CompilerBeginning(Compilation compilation, CompilerInstructions compilerInstructions, List<CompilerInput> compilerInput, IProgressSink progressSink, Compilation.CompilationConfig cfg)
extends Record
-
Constructor Summary
ConstructorsConstructorDescriptionCompilerBeginning(Compilation compilation, CompilerInstructions compilerInstructions, List<CompilerInput> compilerInput, IProgressSink progressSink, Compilation.CompilationConfig cfg) Creates an instance of aCompilerBeginningrecord class. -
Method Summary
Modifier and TypeMethodDescriptioncfg()Returns the value of thecfgrecord component.Returns the value of thecompilationrecord component.Returns the value of thecompilerInputrecord component.Returns the value of thecompilerInstructionsrecord component.final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.Returns the value of theprogressSinkrecord component.final StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
CompilerBeginning
public CompilerBeginning(Compilation compilation, CompilerInstructions compilerInstructions, List<CompilerInput> compilerInput, IProgressSink progressSink, Compilation.CompilationConfig cfg) Creates an instance of aCompilerBeginningrecord class.- Parameters:
compilation- the value for thecompilationrecord componentcompilerInstructions- the value for thecompilerInstructionsrecord componentcompilerInput- the value for thecompilerInputrecord componentprogressSink- the value for theprogressSinkrecord componentcfg- the value for thecfgrecord component
-
-
Method Details
-
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). -
compilation
Returns the value of thecompilationrecord component.- Returns:
- the value of the
compilationrecord component
-
compilerInstructions
Returns the value of thecompilerInstructionsrecord component.- Returns:
- the value of the
compilerInstructionsrecord component
-
compilerInput
Returns the value of thecompilerInputrecord component.- Returns:
- the value of the
compilerInputrecord component
-
progressSink
Returns the value of theprogressSinkrecord component.- Returns:
- the value of the
progressSinkrecord component
-
cfg
Returns the value of thecfgrecord component.- Returns:
- the value of the
cfgrecord component
-