public static enum EntryDoc.Kind extends java.lang.Enum<EntryDoc.Kind>
Enum Constant and Description |
---|
columnLabels
An entry of this kind represents the row that contains labels for columns of the table.
|
data
An entry of this kind represents the row with data for properties of a class, or an
arbitrary set of values.
|
groupSubhead
For IEC61850, we need to sometimes print fancy tables, with the attributes categorised
into groups.
|
tableName
For IEC61850, we need to sometimes print fancy tables, with the very first heading row
containing the name of the table.
|
Modifier and Type | Method and Description |
---|---|
static EntryDoc.Kind |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static EntryDoc.Kind[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EntryDoc.Kind tableName
When printing a row from this entry, the cells of the table need to be merged, the shadding needs to be applied, the style of the row needs to be set to column heading style, and the row needs to be set as heading row.
public static final EntryDoc.Kind columnLabels
When printing a row from this entry, the shadding needs to be applied, the style of the row needs to be set to column heading style, and the row needs to be set as heading row.
public static final EntryDoc.Kind groupSubhead
When printing a row from this entry, the cells of the table need to be merged, the shadding needs to be applied, and the style of the row needs to be set to column heading style (but not as heading row).
public static final EntryDoc.Kind data
public static EntryDoc.Kind[] values()
for (EntryDoc.Kind c : EntryDoc.Kind.values()) System.out.println(c);
public static EntryDoc.Kind valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullCopyright 2009-2016 Tatjana (Tanja) Kostic