in old/dekaf-core/src/main/java/org/jetbrains/dekaf/core/RowLayout.java [152:169]
public String toString() {
switch (kind) {
case EXISTENCE:
return "existence";
case ONE_VALUE:
return commonComponentClass.getSimpleName();
case ARRAY:
return commonComponentClass.getSimpleName() + "[]";
case TUPLE:
return "TUPLE" + representComponents();
case STRUCT:
return rowClass + representComponents();
case CLASS_BY_POSITIONS:
return rowClass + "(positions)";
default:
return "???";
}
}