Package org.correomqtt.gui.views.about
Record Class License
java.lang.Object
java.lang.Record
org.correomqtt.gui.views.about.License
- 
Constructor SummaryConstructors
- 
Method SummaryModifier and TypeMethodDescriptionReturns the value of thecopyrightrecord component.final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.license()Returns the value of thelicenserecord component.Returns the value of thelicenseLinkrecord component.name()Returns the value of thenamerecord component.repoLink()Returns the value of therepoLinkrecord component.final StringtoString()Returns a string representation of this record class.
- 
Constructor Details- 
LicenseCreates an instance of aLicenserecord class.- Parameters:
- name- the value for the- namerecord component
- repoLink- the value for the- repoLinkrecord component
- copyright- the value for the- copyrightrecord component
- license- the value for the- licenserecord component
- licenseLink- the value for the- licenseLinkrecord component
 
 
- 
- 
Method Details- 
toStringReturns 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.
- 
hashCodepublic 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.
- 
equalsIndicates 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).
- 
nameReturns the value of thenamerecord component.- Returns:
- the value of the namerecord component
 
- 
repoLinkReturns the value of therepoLinkrecord component.- Returns:
- the value of the repoLinkrecord component
 
- 
copyrightReturns the value of thecopyrightrecord component.- Returns:
- the value of the copyrightrecord component
 
- 
licenseReturns the value of thelicenserecord component.- Returns:
- the value of the licenserecord component
 
- 
licenseLinkReturns the value of thelicenseLinkrecord component.- Returns:
- the value of the licenseLinkrecord component
 
 
-