information-system-model-do.../src/main/java/org/gcube/informationsystem/utils/documentation/rst/table/RowType.java

19 lines
383 B
Java
Raw Normal View History

2022-12-13 10:29:52 +01:00
package org.gcube.informationsystem.utils.documentation.rst.table;
2023-01-19 11:52:27 +01:00
/**
* @author Luca Frosini (ISTI - CNR)
*/
2022-12-13 10:29:52 +01:00
public enum RowType {
HEADING(Table.ROW_SEPARATOR_HEADING),
NORMAL(Table.ROW_SEPARATOR);
protected String rowSeparator;
private RowType(String rowSeparator) {
this.rowSeparator = rowSeparator;
}
public String getRowSeparator() {
return rowSeparator;
}
}