| Enum Constant and Description |
|---|
COMPONENT
UI component if id of component specified in the corresponding annotation.
|
CONTROLLER
UI controller
|
DATA_CONTAINER
Data container defined in
ScreenData. |
DATA_CONTEXT
DataContext provided by ScreenData. |
DATA_LOADER
DataLoader defined in ScreenData. |
FRAME
Window or Fragment of UI controller
|
PARENT_CONTROLLER
Parent UI controller
|
| Modifier and Type | Method and Description |
|---|---|
static Target |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Target[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Target COMPONENT
public static final Target CONTROLLER
public static final Target PARENT_CONTROLLER
public static final Target FRAME
public static final Target DATA_LOADER
DataLoader defined in ScreenData.public static final Target DATA_CONTAINER
ScreenData.public static final Target DATA_CONTEXT
DataContext provided by ScreenData.public static Target[] values()
for (Target c : Target.values()) System.out.println(c);
public static Target 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