Class JobParameters
java.lang.Object
io.github.douira.glsl_transformer.transform.JobParameters
- Direct Known Subclasses:
FixedWrappedParameters,NonFixedJobParameters
All job parameters have to extend this job parameter base class. It enforces
an equals and hashCode method in order to allow the "fixed" part job
parameters to be used in a map.
If no part of the job parameters is fixed, the class
NonFixedJobParameters can be used instead.-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionabstract booleanequals(JobParameters other) Requires the implementation of the equals method.booleanabstract inthashCode()Requires the implementation of the hashCode method.
-
Constructor Details
-
JobParameters
public JobParameters()
-
-
Method Details
-
equals
Requires the implementation of the equals method.- Parameters:
other- The other job parameters to compare to- Returns:
trueif the fixed parts of the two job parameters are equal
-
equals
-
hashCode
public abstract int hashCode()Requires the implementation of the hashCode method.
-