Record Class MavenCompilerPluginAnnotationProcessors
java.lang.Object
java.lang.Record
io.micronaut.projectgen.core.buildtools.maven.MavenCompilerPluginAnnotationProcessors
- Record Components:
combineAttribute- combine attributeannotationProcessors- annotation processorstestCombineAttribute- test combine attributetestAnnotationProcessors- test annotation processors
public record MavenCompilerPluginAnnotationProcessors(MavenCombineAttribute combineAttribute, List<DependencyCoordinate> annotationProcessors, MavenCombineAttribute testCombineAttribute, List<DependencyCoordinate> testAnnotationProcessors)
extends Record
-
Constructor Summary
ConstructorsConstructorDescriptionMavenCompilerPluginAnnotationProcessors(MavenCombineAttribute combineAttribute, List<DependencyCoordinate> annotationProcessors, MavenCombineAttribute testCombineAttribute, List<DependencyCoordinate> testAnnotationProcessors) Creates an instance of aMavenCompilerPluginAnnotationProcessorsrecord class. -
Method Summary
Modifier and TypeMethodDescriptionReturns the value of theannotationProcessorsrecord component.Returns the value of thecombineAttributerecord component.final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.static MavenCombineAttributemavenCombineAttribute(Language language) of(ModuleContext module, Language language) Returns the value of thetestAnnotationProcessorsrecord component.Returns the value of thetestCombineAttributerecord component.final StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
MavenCompilerPluginAnnotationProcessors
public MavenCompilerPluginAnnotationProcessors(MavenCombineAttribute combineAttribute, List<DependencyCoordinate> annotationProcessors, MavenCombineAttribute testCombineAttribute, List<DependencyCoordinate> testAnnotationProcessors) Creates an instance of aMavenCompilerPluginAnnotationProcessorsrecord class.- Parameters:
combineAttribute- the value for thecombineAttributerecord componentannotationProcessors- the value for theannotationProcessorsrecord componenttestCombineAttribute- the value for thetestCombineAttributerecord componenttestAnnotationProcessors- the value for thetestAnnotationProcessorsrecord component
-
-
Method Details
-
of
-
mavenCombineAttribute
-
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). -
combineAttribute
Returns the value of thecombineAttributerecord component.- Returns:
- the value of the
combineAttributerecord component
-
annotationProcessors
Returns the value of theannotationProcessorsrecord component.- Returns:
- the value of the
annotationProcessorsrecord component
-
testCombineAttribute
Returns the value of thetestCombineAttributerecord component.- Returns:
- the value of the
testCombineAttributerecord component
-
testAnnotationProcessors
Returns the value of thetestAnnotationProcessorsrecord component.- Returns:
- the value of the
testAnnotationProcessorsrecord component
-