java.lang.Object
java.lang.Record
qupath.bioimageio.spec.Author
- Record Components:
name- Author nameaffiliation- Author affiliationgithubUser- Author's GitHub usernameorcid- An ORCID ID in hyphenated groups of 4 digits, valid as per ISO 7064 11,2.
public record Author(String name, String affiliation, String githubUser, String orcid)
extends Record
Author or maintainer.
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionReturns the value of theaffiliationrecord component.final booleanIndicates whether some other object is "equal to" this one.Returns the value of thegithubUserrecord component.final inthashCode()Returns a hash code value for this object.name()Returns the value of thenamerecord component.orcid()Returns the value of theorcidrecord component.toString()Returns a string representation of this record class.
-
Constructor Details
-
Author
Creates an instance of aAuthorrecord class.- Parameters:
name- the value for thenamerecord componentaffiliation- the value for theaffiliationrecord componentgithubUser- the value for thegithubUserrecord componentorcid- the value for theorcidrecord 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). -
name
Returns the value of thenamerecord component.- Returns:
- the value of the
namerecord component
-
affiliation
Returns the value of theaffiliationrecord component.- Returns:
- the value of the
affiliationrecord component
-
githubUser
Returns the value of thegithubUserrecord component.- Returns:
- the value of the
githubUserrecord component
-
orcid
Returns the value of theorcidrecord component.- Returns:
- the value of the
orcidrecord component
-