Record Class ConstructTargetTuple
java.lang.Object
java.lang.Record
org.ek9lang.compiler.backend.ConstructTargetTuple
public record ConstructTargetTuple(Construct construct, String relativeFileName, CompilerFlags compilerFlags, File targetFile)
extends Record
A given construct from a specific source should be output to the targetFile.
-
Constructor Summary
ConstructorsConstructorDescriptionConstructTargetTuple
(Construct construct, String relativeFileName, CompilerFlags compilerFlags, File targetFile) Creates an instance of aConstructTargetTuple
record class. -
Method Summary
Modifier and TypeMethodDescriptionReturns the value of thecompilerFlags
record component.Returns the value of theconstruct
record component.final boolean
Indicates whether some other object is "equal to" this one.final int
hashCode()
Returns a hash code value for this object.Returns the value of therelativeFileName
record component.Returns the value of thetargetFile
record component.final String
toString()
Returns a string representation of this record class.
-
Constructor Details
-
ConstructTargetTuple
public ConstructTargetTuple(Construct construct, String relativeFileName, CompilerFlags compilerFlags, File targetFile) Creates an instance of aConstructTargetTuple
record class.- Parameters:
construct
- the value for theconstruct
record componentrelativeFileName
- the value for therelativeFileName
record componentcompilerFlags
- the value for thecompilerFlags
record componenttargetFile
- the value for thetargetFile
record 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. All components in this record class are compared withObjects::equals(Object,Object)
. -
construct
Returns the value of theconstruct
record component.- Returns:
- the value of the
construct
record component
-
relativeFileName
Returns the value of therelativeFileName
record component.- Returns:
- the value of the
relativeFileName
record component
-
compilerFlags
Returns the value of thecompilerFlags
record component.- Returns:
- the value of the
compilerFlags
record component
-
targetFile
Returns the value of thetargetFile
record component.- Returns:
- the value of the
targetFile
record component
-