public static enum DriveApp.IconCategory extends java.lang.Enum<DriveApp.IconCategory>
| Enum Constant and Description |
|---|
APPLICATION |
DOCUMENT |
DOCUMENT_SHARED |
| Modifier and Type | Method and Description |
|---|---|
static DriveApp.IconCategory |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static DriveApp.IconCategory[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DriveApp.IconCategory APPLICATION
public static final DriveApp.IconCategory DOCUMENT
public static final DriveApp.IconCategory DOCUMENT_SHARED
public static DriveApp.IconCategory[] values()
for (DriveApp.IconCategory c : DriveApp.IconCategory.values()) System.out.println(c);
public static DriveApp.IconCategory 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 null