Package com.tagtraum.beatunes.action
Enum BaseAction.EnabledView
- java.lang.Object
-
- java.lang.Enum<BaseAction.EnabledView>
-
- com.tagtraum.beatunes.action.BaseAction.EnabledView
-
- All Implemented Interfaces:
Serializable
,Comparable<BaseAction.EnabledView>
- Enclosing class:
- BaseAction
public static enum BaseAction.EnabledView extends Enum<BaseAction.EnabledView>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ANALYSIS_QUEUE
DETAIL_VIEW
MATCH_TABLE
PLAYLIST_TREE
SIMPLE_SONG_TABLE
SONG_TABLE
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static BaseAction.EnabledView
valueOf(String name)
Returns the enum constant of this type with the specified name.static BaseAction.EnabledView[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
PLAYLIST_TREE
public static final BaseAction.EnabledView PLAYLIST_TREE
-
SONG_TABLE
public static final BaseAction.EnabledView SONG_TABLE
-
MATCH_TABLE
public static final BaseAction.EnabledView MATCH_TABLE
-
ANALYSIS_QUEUE
public static final BaseAction.EnabledView ANALYSIS_QUEUE
-
DETAIL_VIEW
public static final BaseAction.EnabledView DETAIL_VIEW
-
SIMPLE_SONG_TABLE
public static final BaseAction.EnabledView SIMPLE_SONG_TABLE
-
-
Method Detail
-
values
public static BaseAction.EnabledView[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (BaseAction.EnabledView c : BaseAction.EnabledView.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static BaseAction.EnabledView valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
-