public enum CustomizeType extends Enum<CustomizeType>
| Enum Constant and Description |
|---|
FILE
The JavaScript or CSS file is uploaded to the app.
|
URL
The JavaScript or CSS file is specified with a URL.
|
| Modifier and Type | Method and Description |
|---|---|
static CustomizeType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CustomizeType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CustomizeType FILE
public static final CustomizeType URL
public static CustomizeType[] values()
for (CustomizeType c : CustomizeType.values()) System.out.println(c);
public static CustomizeType 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 null