Package com.smartsheet.api.models.enums
Enum ColumnTag
- java.lang.Object
-
- java.lang.Enum<ColumnTag>
-
- com.smartsheet.api.models.enums.ColumnTag
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CALENDAR_END_DATE
Represents CALENDAR_END_DATE tag.CALENDAR_START_DATE
Represents CALENDAR_START_DATE tag.CARD_DONE
Represents CARD_DONE 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.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ColumnTag
valueOf(java.lang.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.
-
-
-
Enum Constant Detail
-
CALENDAR_START_DATE
public static final ColumnTag CALENDAR_START_DATE
Represents CALENDAR_START_DATE tag.
-
CALENDAR_END_DATE
public static final ColumnTag CALENDAR_END_DATE
Represents CALENDAR_END_DATE tag.
-
CARD_DONE
public static final ColumnTag CARD_DONE
Represents CARD_DONE tag.
-
GANTT_START_DATE
public static final ColumnTag GANTT_START_DATE
Represents GANTT_START_DATE tag.
-
GANTT_END_DATE
public static final ColumnTag GANTT_END_DATE
Represents GANTT_END_DATE tag.
-
GANTT_PERCENT_COMPLETE
public static final ColumnTag GANTT_PERCENT_COMPLETE
Represents GANTT_PERCENT_COMPLETE tag.
-
GANTT_DISPLAY_LABEL
public static final ColumnTag GANTT_DISPLAY_LABEL
Represents GANTT_DISPLAY_LABEL tag.
-
GANTT_PREDECESSOR
public static final ColumnTag GANTT_PREDECESSOR
Represents GANTT_PREDECESSOR tag.
-
GANTT_DURATION
public static final ColumnTag GANTT_DURATION
Represents GANTT_DURATION tag.
-
GANTT_ASSIGNED_RESOURCE
public static final ColumnTag GANTT_ASSIGNED_RESOURCE
Represents GANTT_ASSIGNED_RESOURCE.
-
GANTT_ALLOCATION
public static final ColumnTag GANTT_ALLOCATION
used for the allocation percentage for the resource management feature.
-
-
Method Detail
-
values
public static ColumnTag[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (ColumnTag c : ColumnTag.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ColumnTag valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
-