public static enum GanttChart.RowHeaderType extends Enum<GanttChart.RowHeaderType>
RowHeader
,
GanttChart.setRowHeaderType(RowHeaderType)
,
GanttChart.setRowHeaderNodeFactory(Callback)
Enum Constant and Description |
---|
GRAPHIC_NODE
Makes the row header cells display a custom node for each row.
|
LEVEL_NUMBER
Makes the row header cells display the level number of the current
row (1, 1.1, 1.2, 2, 2.1, 2.2, 2.3, ...).
|
ROW_NUMBER
Makes the row header cells display the number of the current row (1,
2, 3, ....).
|
Modifier and Type | Method and Description |
---|---|
static GanttChart.RowHeaderType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static GanttChart.RowHeaderType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GanttChart.RowHeaderType ROW_NUMBER
public static final GanttChart.RowHeaderType LEVEL_NUMBER
public static final GanttChart.RowHeaderType GRAPHIC_NODE
GanttChart.setRowHeaderNodeFactory(Callback)
public static GanttChart.RowHeaderType[] values()
for (GanttChart.RowHeaderType c : GanttChart.RowHeaderType.values()) System.out.println(c);
public static GanttChart.RowHeaderType valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullCopyright © 2020 Dirk Lemmermann Software & Consulting. All rights reserved.