Record Class MavenCompilerPluginConfiguration
java.lang.Object
java.lang.Record
io.micronaut.projectgen.core.buildtools.maven.MavenCompilerPluginConfiguration
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionReturns the value of thecompilerArgs
record component.Returns the value of theconfigurationCombine
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 theincrementalCompilation
record component.source()
Returns the value of thesource
record component.target()
Returns the value of thetarget
record component.final String
toString()
Returns a string representation of this record class.version()
Returns the value of theversion
record component.
-
Constructor Details
-
MavenCompilerPluginConfiguration
public MavenCompilerPluginConfiguration(String version, String configurationCombine, Boolean incrementalCompilation, String source, String target, List<String> compilerArgs) Creates an instance of aMavenCompilerPluginConfiguration
record class.- Parameters:
version
- the value for theversion
record componentconfigurationCombine
- the value for theconfigurationCombine
record componentincrementalCompilation
- the value for theincrementalCompilation
record componentsource
- the value for thesource
record componenttarget
- the value for thetarget
record componentcompilerArgs
- the value for thecompilerArgs
record 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)
. -
version
Returns the value of theversion
record component.- Returns:
- the value of the
version
record component
-
configurationCombine
Returns the value of theconfigurationCombine
record component.- Returns:
- the value of the
configurationCombine
record component
-
incrementalCompilation
Returns the value of theincrementalCompilation
record component.- Returns:
- the value of the
incrementalCompilation
record component
-
source
Returns the value of thesource
record component.- Returns:
- the value of the
source
record component
-
target
Returns the value of thetarget
record component.- Returns:
- the value of the
target
record component
-
compilerArgs
Returns the value of thecompilerArgs
record component.- Returns:
- the value of the
compilerArgs
record component
-