Package com.io7m.cardant.model
Record Class CATypeDeclaration
java.lang.Object
java.lang.Record
com.io7m.cardant.model.CATypeDeclaration
- Record Components:
name- The type namedescription- The descriptionfields- The set of fields
public record CATypeDeclaration(com.io7m.lanark.core.RDottedName name, String description, Map<com.io7m.lanark.core.RDottedName,CATypeField> fields)
extends Record
A type declaration.
-
Constructor Summary
ConstructorsConstructorDescriptionCATypeDeclaration(com.io7m.lanark.core.RDottedName name, String description, Map<com.io7m.lanark.core.RDottedName, CATypeField> fields) A type declaration. -
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.final StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
CATypeDeclaration
public CATypeDeclaration(com.io7m.lanark.core.RDottedName name, String description, Map<com.io7m.lanark.core.RDottedName, CATypeField> fields) A type declaration.- Parameters:
name- 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). -
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
-