public enum ContextType extends Enum<ContextType>
ContextParamContextParam| Enum Constant and Description |
|---|
APPLICATION
The web application, the type is
WebApp |
BIND_CONTEXT
The current bind context, the type is
BindContext |
BINDER
The current binder, the type is
Binder |
COMMAND_NAME
The command name
|
COMPONENT
The current component, the type is subclass of the
Component |
DESKTOP
The desktop of the current component, the type is
Desktop |
EXECUTION
The current execution, the type is
Execution |
PAGE
The page of the current component, the type is
Page |
SESSION
The session, the type is
Session |
SPACE_OWNER
The space owner of the current component, the type is
IdSpace |
TRIGGER_EVENT
The trigger event of a command
|
VIEW
The view of binder, the type is
Component |
| Modifier and Type | Method and Description |
|---|---|
static ContextType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ContextType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ContextType BIND_CONTEXT
BindContextpublic static final ContextType BINDER
Binderpublic static final ContextType EXECUTION
Executionpublic static final ContextType COMPONENT
Componentpublic static final ContextType SPACE_OWNER
IdSpacepublic static final ContextType VIEW
Componentpublic static final ContextType PAGE
Pagepublic static final ContextType DESKTOP
Desktoppublic static final ContextType SESSION
Sessionpublic static final ContextType APPLICATION
WebApppublic static final ContextType TRIGGER_EVENT
public static final ContextType COMMAND_NAME
public static ContextType[] values()
for (ContextType c : ContextType.values()) System.out.println(c);
public static ContextType valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2020. All rights reserved.