Package net.mcreator.generator
Record Class GeneratorFile
java.lang.Object
java.lang.Record
net.mcreator.generator.GeneratorFile
public record GeneratorFile(GeneratorTemplate source, @Nonnull GeneratorFile.Writer writer, String contents)
extends Record
-
Nested Class Summary
-
Constructor Summary
ConstructorDescriptionGeneratorFile
(GeneratorTemplate source, GeneratorFile.Writer writer, String contents) Creates an instance of aGeneratorFile
record class. -
Method Summary
Modifier and TypeMethodDescriptioncontents()
Returns the value of thecontents
record component.boolean
Indicates whether some other object is "equal to" this one.getFile()
int
hashCode()
Returns a hash code value for this object.source()
Returns the value of thesource
record component.toString()
Returns a string representation of this record class.writer()
Returns the value of thewriter
record component.
-
Constructor Details
-
GeneratorFile
public GeneratorFile(GeneratorTemplate source, @Nonnull GeneratorFile.Writer writer, String contents) Creates an instance of aGeneratorFile
record class.- Parameters:
source
- the value for thesource
record componentwriter
- the value for thewriter
record componentcontents
- the value for thecontents
record component
-
-
Method Details
-
getFile
-
getUsercodeComment
-
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)
. -
hashCode
public int hashCode()Returns a hash code value for this object. The value is derived from the hash code of each of the record components. -
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. -
source
Returns the value of thesource
record component.- Returns:
- the value of the
source
record component
-
writer
Returns the value of thewriter
record component.- Returns:
- the value of the
writer
record component
-
contents
Returns the value of thecontents
record component.- Returns:
- the value of the
contents
record component
-