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