public enum GlobalTemplate extends Enum<GlobalTemplate>
| Enum Constant and Description |
|---|
BLANK_SHEET
Blank Sheet
|
PROJECT_SHEET
Project sheet
|
TASK_LIST
Task list
|
| Modifier and Type | Method and Description |
|---|---|
static GlobalTemplate |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static GlobalTemplate[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GlobalTemplate BLANK_SHEET
public static final GlobalTemplate TASK_LIST
public static final GlobalTemplate PROJECT_SHEET
public static GlobalTemplate[] values()
for (GlobalTemplate c : GlobalTemplate.values()) System.out.println(c);
public static GlobalTemplate 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.