Package ipsk.apps.audioeditor.ui
Enum AudioEditorUI.WindowState
- java.lang.Object
-
- java.lang.Enum<AudioEditorUI.WindowState>
-
- ipsk.apps.audioeditor.ui.AudioEditorUI.WindowState
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<AudioEditorUI.WindowState>
- Enclosing class:
- AudioEditorUI
public static enum AudioEditorUI.WindowState extends java.lang.Enum<AudioEditorUI.WindowState>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ICONIFIED
MAXIMIZED_BOTH
MAXIMIZED_HORIZ
MAXIMIZED_VERT
NORMAL
-
Field Summary
Fields Modifier and Type Field Description int
awtState
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static AudioEditorUI.WindowState
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static AudioEditorUI.WindowState[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NORMAL
public static final AudioEditorUI.WindowState NORMAL
-
MAXIMIZED_BOTH
public static final AudioEditorUI.WindowState MAXIMIZED_BOTH
-
MAXIMIZED_HORIZ
public static final AudioEditorUI.WindowState MAXIMIZED_HORIZ
-
MAXIMIZED_VERT
public static final AudioEditorUI.WindowState MAXIMIZED_VERT
-
ICONIFIED
public static final AudioEditorUI.WindowState ICONIFIED
-
-
Method Detail
-
values
public static AudioEditorUI.WindowState[] 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 (AudioEditorUI.WindowState c : AudioEditorUI.WindowState.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static AudioEditorUI.WindowState valueOf(java.lang.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:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
-