Record Class Compiler
java.lang.Object
java.lang.Record
de.firemage.autograder.core.compiler.Compiler
-
Constructor Summary
ConstructorsConstructorDescriptionCompiler(TempLocation tempLocation, JavaVersion javaVersion) Creates an instance of aCompilerrecord class. -
Method Summary
Modifier and TypeMethodDescriptioncompileToJar(SourceInfo input) 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 thejavaVersionrecord component.Returns the value of thetempLocationrecord component.final StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
Compiler
Creates an instance of aCompilerrecord class.- Parameters:
tempLocation- the value for thetempLocationrecord componentjavaVersion- the value for thejavaVersionrecord component
-
-
Method Details
-
compileToJar
public Optional<CompilationResult> compileToJar(SourceInfo input) throws IOException, CompilationFailureException -
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). -
tempLocation
Returns the value of thetempLocationrecord component.- Returns:
- the value of the
tempLocationrecord component
-
javaVersion
Returns the value of thejavaVersionrecord component.- Returns:
- the value of the
javaVersionrecord component
-