public enum ColumnTag extends Enum<ColumnTag>
| Enum Constant and Description |
|---|
CALENDAR_END_DATE
Represents CALENDAR_END_DATE tag.
|
CALENDAR_START_DATE
Represents CALENDAR_START_DATE tag.
|
GANTT_ALLOCATION
used for the allocation percentage for the resource management feature.
|
GANTT_ASSIGNED_RESOURCE
Represents GANTT_ASSIGNED_RESOURCE.
|
GANTT_DISPLAY_LABEL
Represents GANTT_DISPLAY_LABEL tag.
|
GANTT_DURATION
Represents GANTT_DURATION tag.
|
GANTT_END_DATE
Represents GANTT_END_DATE tag.
|
GANTT_PERCENT_COMPLETE
Represents GANTT_PERCENT_COMPLETE tag.
|
GANTT_PREDECESSOR
Represents GANTT_PREDECESSOR tag.
|
GANTT_START_DATE
Represents GANTT_START_DATE tag.
|
| Modifier and Type | Method and Description |
|---|---|
static ColumnTag |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ColumnTag[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ColumnTag CALENDAR_START_DATE
public static final ColumnTag CALENDAR_END_DATE
public static final ColumnTag GANTT_START_DATE
public static final ColumnTag GANTT_END_DATE
public static final ColumnTag GANTT_PERCENT_COMPLETE
public static final ColumnTag GANTT_DISPLAY_LABEL
public static final ColumnTag GANTT_PREDECESSOR
public static final ColumnTag GANTT_DURATION
public static final ColumnTag GANTT_ASSIGNED_RESOURCE
public static final ColumnTag GANTT_ALLOCATION
public static ColumnTag[] values()
for (ColumnTag c : ColumnTag.values()) System.out.println(c);
public static ColumnTag 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 © 2014–2017 Smartsheet. All rights reserved.