Package de.gsi.chart.viewer.event
Enum WindowUpdateEvent.Type
- java.lang.Object
-
- java.lang.Enum<WindowUpdateEvent.Type>
-
- de.gsi.chart.viewer.event.WindowUpdateEvent.Type
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<WindowUpdateEvent.Type>
- Enclosing class:
- WindowUpdateEvent
public static enum WindowUpdateEvent.Type extends java.lang.Enum<WindowUpdateEvent.Type>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description UNSPECIFIEDWINDOW_CLOSEDWINDOW_CLOSINGWINDOW_DETACHEDWINDOW_DETACHINGWINDOW_MAXIMISEDWINDOW_MAXIMISINGWINDOW_MINIMISEDWINDOW_MINIMISINGWINDOW_RESTOREDWINDOW_RESTORING
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static WindowUpdateEvent.TypevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static WindowUpdateEvent.Type[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
UNSPECIFIED
public static final WindowUpdateEvent.Type UNSPECIFIED
-
WINDOW_MINIMISING
public static final WindowUpdateEvent.Type WINDOW_MINIMISING
-
WINDOW_MINIMISED
public static final WindowUpdateEvent.Type WINDOW_MINIMISED
-
WINDOW_RESTORED
public static final WindowUpdateEvent.Type WINDOW_RESTORED
-
WINDOW_RESTORING
public static final WindowUpdateEvent.Type WINDOW_RESTORING
-
WINDOW_DETACHING
public static final WindowUpdateEvent.Type WINDOW_DETACHING
-
WINDOW_DETACHED
public static final WindowUpdateEvent.Type WINDOW_DETACHED
-
WINDOW_MAXIMISING
public static final WindowUpdateEvent.Type WINDOW_MAXIMISING
-
WINDOW_MAXIMISED
public static final WindowUpdateEvent.Type WINDOW_MAXIMISED
-
WINDOW_CLOSING
public static final WindowUpdateEvent.Type WINDOW_CLOSING
-
WINDOW_CLOSED
public static final WindowUpdateEvent.Type WINDOW_CLOSED
-
-
Method Detail
-
values
public static WindowUpdateEvent.Type[] 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 (WindowUpdateEvent.Type c : WindowUpdateEvent.Type.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static WindowUpdateEvent.Type 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
-
-