public static record DatasourceRpc.ColumnMetaInfo(String columnName, int dataType, String typeName, int columnSize, boolean primaryKey, boolean indexed)
extends Record
Constructor Summary
Constructors
Constructor
Description
ColumnMetaInfo(String columnName,
int dataType,
String typeName,
int columnSize,
boolean primaryKey,
boolean indexed)
Creates an instance of a ColumnMetaInfo record class.
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.
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 with Objects::equals(Object,Object); primitive components are compared with '=='.