Record Class LinkedGroup
java.lang.Object
java.lang.Record
io.github.joke.conventionalversion.config.LinkedGroup
- Record Components:
name- release-pleasegroupNamecomponents- the components held together, named as components rather than as paths
A set of components
release-please releases in lockstep.
Its linked-versions plugin reduces the group's candidates to the highest version and
then releases every member at it, including members whose own commits imply no bump.
-
Constructor Summary
ConstructorsConstructorDescriptionLinkedGroup(String name, List<String> components) Creates an instance of aLinkedGrouprecord class. -
Method Summary
Modifier and TypeMethodDescriptionReturns the value of thecomponentsrecord component.final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.booleanname()Returns the value of thenamerecord component.final StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
LinkedGroup
Creates an instance of aLinkedGrouprecord class.- Parameters:
name- the value for thenamerecord componentcomponents- the value for thecomponentsrecord component
-
-
Method Details
-
holds
-
toString
-
hashCode
-
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). -
name
-
components
Returns the value of thecomponentsrecord component.- Returns:
- the value of the
componentsrecord component
-