Enum MultiWindowEvent
- All Implemented Interfaces:
ValueEnum
,Serializable
,Comparable<MultiWindowEvent>
,Constable
Aside from the standard event types listed, other types may be supported depending upon whether OpenFin is in use:
- With OpenFin, application event types are allowed.
- Without OpenFin, HTML Dom Events supported by window.addEventListener() are allowed.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescription(synonym for "focus")fires when a window loses focusfires when a window is closed(synonym for "blur")fires when a window gets focusfires when a window finishes loadingfires when a window is movedfires when a window is resizedfires when a window is about to be reloaded or closed -
Method Summary
Modifier and TypeMethodDescriptiongetValue()
static MultiWindowEvent
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.
-
Enum Constant Details
-
LOAD
fires when a window finishes loadingIf this enumerated value is used in a
Component XML
file or server-side DataSource descriptor (.ds.xml file), use the value "load". -
UNLOAD
fires when a window is about to be reloaded or closedIf this enumerated value is used in a
Component XML
file or server-side DataSource descriptor (.ds.xml file), use the value "unload". -
MOVE
fires when a window is movedIf this enumerated value is used in a
Component XML
file or server-side DataSource descriptor (.ds.xml file), use the value "move". -
RESIZE
fires when a window is resizedIf this enumerated value is used in a
Component XML
file or server-side DataSource descriptor (.ds.xml file), use the value "resize". -
CLOSE
fires when a window is closedIf this enumerated value is used in a
Component XML
file or server-side DataSource descriptor (.ds.xml file), use the value "close". -
FOCUS
fires when a window gets focusIf this enumerated value is used in a
Component XML
file or server-side DataSource descriptor (.ds.xml file), use the value "focus". -
BLUR
fires when a window loses focusIf this enumerated value is used in a
Component XML
file or server-side DataSource descriptor (.ds.xml file), use the value "blur". -
ACTIVATE
(synonym for "focus")If this enumerated value is used in a
Component XML
file or server-side DataSource descriptor (.ds.xml file), use the value "activate". -
DEACTIVATE
(synonym for "blur")If this enumerated value is used in a
Component XML
file or server-side DataSource descriptor (.ds.xml file), use the value "deactivate".
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
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
-
getValue
-