|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Object java.lang.Enum<Audio> group1.view.audio.Audio
public enum Audio
The enumerated type for different audio files.
Enum Constant Summary | |
---|---|
MARIO_GROUND_THEME
|
|
MARIO_JUMP
|
|
PORKYS_PORKIES
|
|
QUICK_MAN
|
|
SMB3_REMIX
|
|
TETRIS_A
|
|
TIME_PASSAGE
|
Method Summary | |
---|---|
java.lang.String |
getFilename()
Get the file name. |
AudioType |
getType()
Get the AudioType. |
static Audio |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static Audio[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final Audio MARIO_JUMP
public static final Audio MARIO_GROUND_THEME
public static final Audio PORKYS_PORKIES
public static final Audio QUICK_MAN
public static final Audio SMB3_REMIX
public static final Audio TETRIS_A
public static final Audio TIME_PASSAGE
Method Detail |
---|
public static Audio[] values()
for (Audio c : Audio.values()) System.out.println(c);
public static Audio 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 name
java.lang.NullPointerException
- if the argument is nullpublic AudioType getType()
public java.lang.String getFilename()
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |