Package cdc.issues.answers
Record Class IssueCommentImpl
java.lang.Object
java.lang.Record
cdc.issues.answers.IssueCommentImpl
- All Implemented Interfaces:
IssueComment
record IssueCommentImpl(String author, Instant date, String text)
extends Record
implements IssueComment
-
Nested Class Summary
Nested classes/interfaces inherited from interface cdc.issues.answers.IssueComment
IssueComment.Builder -
Constructor Summary
ConstructorsConstructorDescriptionIssueCommentImpl(String author, Instant date, String text) Creates an instance of aIssueCommentImplrecord class. -
Method Summary
Modifier and TypeMethodDescriptionauthor()Returns the value of theauthorrecord component.date()Returns the value of thedaterecord component.final booleanIndicates whether some other object is "equal to" this one.getDate()getText()final inthashCode()Returns a hash code value for this object.text()Returns the value of thetextrecord component.final StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
IssueCommentImpl
Creates an instance of aIssueCommentImplrecord class.- Parameters:
author- the value for theauthorrecord componentdate- the value for thedaterecord componenttext- the value for thetextrecord component
-
-
Method Details
-
getAuthor
- Specified by:
getAuthorin interfaceIssueComment- Returns:
- The author of this comment.
-
getDate
- Specified by:
getDatein interfaceIssueComment- Returns:
- The date (as an Instant) of this comment.
-
getText
- Specified by:
getTextin interfaceIssueComment- Returns:
- The text of this comment.
-
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). -
author
Returns the value of theauthorrecord component.- Returns:
- the value of the
authorrecord component
-
date
Returns the value of thedaterecord component.- Returns:
- the value of the
daterecord component
-
text
Returns the value of thetextrecord component.- Returns:
- the value of the
textrecord component
-