Record Class TypeInfo
java.lang.Object
java.lang.Record
org.tentackle.maven.plugin.wizard.fx.TypeInfo
- Record Components:
fqcn- the full qualified classnametableName- the table nameclassId- the class-ID
Holds the type info for a datanode.
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionlongclassId()Returns the value of theclassIdrecord component.final booleanIndicates whether some other object is "equal to" this one.fqcn()Returns the value of thefqcnrecord component.final inthashCode()Returns a hash code value for this object.Returns the value of thetableNamerecord component.final StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
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. Reference components are compared withObjects::equals(Object,Object); primitive components are compared with '=='. -
fqcn
Returns the value of thefqcnrecord component.- Returns:
- the value of the
fqcnrecord component
-
tableName
Returns the value of thetableNamerecord component.- Returns:
- the value of the
tableNamerecord component
-
classId
public long classId()Returns the value of theclassIdrecord component.- Returns:
- the value of the
classIdrecord component
-