Package com.tagtraum.beatunes.action
Enum BeaTunesUIRegion
- java.lang.Object
-
- java.lang.Enum<BeaTunesUIRegion>
-
- com.tagtraum.beatunes.action.BeaTunesUIRegion
-
- All Implemented Interfaces:
UIRegion
,Serializable
,Comparable<BeaTunesUIRegion>
public enum BeaTunesUIRegion extends Enum<BeaTunesUIRegion> implements UIRegion
Predefined regions for BeaTunes. You are not limited to these regions, they are just convenience.- Author:
- Hendrik Schreiber
- See Also:
UIRegion
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ANALYSIS_QUEUE_BUTTON_PANEL
EDIT_MENU
FILE_MENU
HELP_MENU
ITUNES_MENU
LOWER_LEFT_BUTTON_PANEL
LOWER_RIGHT_BUTTON_PANEL
MAIN_TOOLBAR
MASTER_BUTTON_PANEL
SONG_CONTEXT_BUTTON_PANEL
SONG_CONTEXT_MENU
TOOL_MENU
VIEW_MENU
WINDOW_MENU
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getPath()
Property path to a UI region.static BeaTunesUIRegion
valueOf(String name)
Returns the enum constant of this type with the specified name.static BeaTunesUIRegion[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
MAIN_TOOLBAR
public static final BeaTunesUIRegion MAIN_TOOLBAR
-
LOWER_LEFT_BUTTON_PANEL
public static final BeaTunesUIRegion LOWER_LEFT_BUTTON_PANEL
-
LOWER_RIGHT_BUTTON_PANEL
public static final BeaTunesUIRegion LOWER_RIGHT_BUTTON_PANEL
-
MASTER_BUTTON_PANEL
public static final BeaTunesUIRegion MASTER_BUTTON_PANEL
-
SONG_CONTEXT_BUTTON_PANEL
public static final BeaTunesUIRegion SONG_CONTEXT_BUTTON_PANEL
-
ANALYSIS_QUEUE_BUTTON_PANEL
public static final BeaTunesUIRegion ANALYSIS_QUEUE_BUTTON_PANEL
-
FILE_MENU
public static final BeaTunesUIRegion FILE_MENU
-
EDIT_MENU
public static final BeaTunesUIRegion EDIT_MENU
-
VIEW_MENU
public static final BeaTunesUIRegion VIEW_MENU
-
ITUNES_MENU
public static final BeaTunesUIRegion ITUNES_MENU
-
TOOL_MENU
public static final BeaTunesUIRegion TOOL_MENU
-
WINDOW_MENU
public static final BeaTunesUIRegion WINDOW_MENU
-
HELP_MENU
public static final BeaTunesUIRegion HELP_MENU
-
SONG_CONTEXT_MENU
public static final BeaTunesUIRegion SONG_CONTEXT_MENU
-
-
Method Detail
-
values
public static BeaTunesUIRegion[] 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 (BeaTunesUIRegion c : BeaTunesUIRegion.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static BeaTunesUIRegion 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
-
-