public enum MultiWindowEvent extends java.lang.Enum<MultiWindowEvent> implements ValueEnum
Aside from the standard event types listed, other types may be supported depending upon whether OpenFin is in use:
| Enum Constant and Description | 
|---|
| ACTIVATE(synonym for "focus") | 
| BLURfires when a window loses focus | 
| CLOSEfires when a window is closed | 
| DEACTIVATE(synonym for "blur") | 
| FOCUSfires when a window gets focus | 
| LOADfires when a window finishes loading | 
| MOVEfires when a window is moved | 
| RESIZEfires when a window is resized | 
| UNLOADfires when a window is about to be reloaded or closed | 
| Modifier and Type | Method and Description | 
|---|---|
| java.lang.String | getValue() | 
| static MultiWindowEvent | valueOf(java.lang.String name)Returns the enum constant of this type with the specified name. | 
| static MultiWindowEvent[] | values()Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final MultiWindowEvent LOAD
 If this enumerated value is used in a Component XML
 file or server-side DataSource descriptor (.ds.xml file), use the value "load".
public static final MultiWindowEvent UNLOAD
 If this enumerated value is used in a Component XML
 file or server-side DataSource descriptor (.ds.xml file), use the value "unload".
public static final MultiWindowEvent MOVE
 If this enumerated value is used in a Component XML
 file or server-side DataSource descriptor (.ds.xml file), use the value "move".
public static final MultiWindowEvent RESIZE
 If this enumerated value is used in a Component XML
 file or server-side DataSource descriptor (.ds.xml file), use the value "resize".
public static final MultiWindowEvent CLOSE
 If this enumerated value is used in a Component XML
 file or server-side DataSource descriptor (.ds.xml file), use the value "close".
public static final MultiWindowEvent FOCUS
 If this enumerated value is used in a Component XML
 file or server-side DataSource descriptor (.ds.xml file), use the value "focus".
public static final MultiWindowEvent BLUR
 If this enumerated value is used in a Component XML
 file or server-side DataSource descriptor (.ds.xml file), use the value "blur".
public static final MultiWindowEvent ACTIVATE
 If this enumerated value is used in a Component XML
 file or server-side DataSource descriptor (.ds.xml file), use the value "activate".
public static final MultiWindowEvent DEACTIVATE
 If this enumerated value is used in a Component XML
 file or server-side DataSource descriptor (.ds.xml file), use the value "deactivate".
public static MultiWindowEvent[] values()
for (MultiWindowEvent c : MultiWindowEvent.values()) System.out.println(c);
public static MultiWindowEvent 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 namejava.lang.NullPointerException - if the argument is null