Package io.aiven.commons.kafka.config
Record Class SinceInfo.Data
java.lang.Object
java.lang.Record
io.aiven.commons.kafka.config.SinceInfo.Data
- Record Components:
groupId- the groupId. May benull.artifactId- the artifactId. May benull.version- the version. Must be specified.
- All Implemented Interfaces:
Comparable<SinceInfo.Data>
- Enclosing class:
- SinceInfo
public static record SinceInfo.Data(String groupId, String artifactId, String version)
extends Record
implements Comparable<SinceInfo.Data>
Record of the data to display.
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionReturns the value of theartifactIdrecord component.intcompareTo(SinceInfo.Data other) booleanIndicates whether some other object is "equal to" this one.groupId()Returns the value of thegroupIdrecord component.inthashCode()Returns a hash code value for this object.toString()Returns a string representation of this record class.version()Returns the value of theversionrecord component.
-
Constructor Details
-
Data
Construct the Data object from a builder.- Parameters:
builder- the builder to construct from.
-
Data
Creates an instance of aDatarecord class.- Parameters:
groupId- the value for thegroupIdrecord componentartifactId- the value for theartifactIdrecord componentversion- the value for theversionrecord 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. -
compareTo
- Specified by:
compareToin interfaceComparable<SinceInfo.Data>
-
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). -
hashCode
public int hashCode()Returns a hash code value for this object. The value is derived from the hash code of each of the record components. -
groupId
Returns the value of thegroupIdrecord component.- Returns:
- the value of the
groupIdrecord component
-
artifactId
Returns the value of theartifactIdrecord component.- Returns:
- the value of the
artifactIdrecord component
-
version
Returns the value of theversionrecord component.- Returns:
- the value of the
versionrecord component
-