Package com.io7m.cardant.model
Record Class CATypeRecord
java.lang.Object
java.lang.Record
com.io7m.cardant.model.CATypeRecord
- Record Components:
packageIdentifier- The package that owns the typename- The type namedescription- The descriptionfields- The set of fields
public record CATypeRecord(CATypePackageIdentifier packageIdentifier, com.io7m.lanark.core.RDottedName name, String description, Map<com.io7m.lanark.core.RDottedName,CATypeField> fields)
extends Record
A record type.
-
Constructor Summary
ConstructorsConstructorDescriptionCATypeRecord(CATypePackageIdentifier packageIdentifier, com.io7m.lanark.core.RDottedName name, String description, Map<com.io7m.lanark.core.RDottedName, CATypeField> fields) A record type. -
Method Summary
Modifier and TypeMethodDescriptionReturns the value of thedescriptionrecord component.final booleanIndicates whether some other object is "equal to" this one.Map<com.io7m.lanark.core.RDottedName, CATypeField> fields()Returns the value of thefieldsrecord component.final inthashCode()Returns a hash code value for this object.com.io7m.lanark.core.RDottedNamename()Returns the value of thenamerecord component.Returns the value of thepackageIdentifierrecord component.final StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
CATypeRecord
public CATypeRecord(CATypePackageIdentifier packageIdentifier, com.io7m.lanark.core.RDottedName name, String description, Map<com.io7m.lanark.core.RDottedName, CATypeField> fields) A record type.- Parameters:
packageIdentifier- The package that owns the typename- The type namedescription- The descriptionfields- The set of fields
-
-
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). -
packageIdentifier
Returns the value of thepackageIdentifierrecord component.- Returns:
- the value of the
packageIdentifierrecord component
-
name
public com.io7m.lanark.core.RDottedName name()Returns the value of thenamerecord component.- Returns:
- the value of the
namerecord component
-
description
Returns the value of thedescriptionrecord component.- Returns:
- the value of the
descriptionrecord component
-
fields
Returns the value of thefieldsrecord component.- Returns:
- the value of the
fieldsrecord component
-