public enum StringConstants extends java.lang.Enum<StringConstants>
| Enum Constant and Description |
|---|
ADD_FRAME |
ANIMATION_NAME_PROMPT |
DELETE_FRAME |
NEW_ANIMATION |
NEW_SPRITE |
NO_SELECT_EFFECT |
PREVIEW_ANIMATION |
SAVE_ANIMATION |
SAVE_ANIMATIONS_TO_FILE |
SELECT_EFFECT |
STYLE_SHEET |
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
get() |
static StringConstants |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static StringConstants[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final StringConstants STYLE_SHEET
public static final StringConstants SAVE_ANIMATIONS_TO_FILE
public static final StringConstants NEW_ANIMATION
public static final StringConstants NEW_SPRITE
public static final StringConstants PREVIEW_ANIMATION
public static final StringConstants SAVE_ANIMATION
public static final StringConstants ADD_FRAME
public static final StringConstants DELETE_FRAME
public static final StringConstants ANIMATION_NAME_PROMPT
public static final StringConstants SELECT_EFFECT
public static final StringConstants NO_SELECT_EFFECT
public static StringConstants[] values()
for (StringConstants c : StringConstants.values()) System.out.println(c);
public static StringConstants 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 nullpublic java.lang.String get()