public enum VisibilityState extends Enum<VisibilityState>
| Enum Constant and Description |
|---|
hidden
The user can not see the application.
|
prerender
This is usually set when the application is first loaded.
|
unloaded
This can be set when the application is being unloaded.
|
visible
The user can see the application.
|
| Modifier and Type | Method and Description |
|---|---|
static VisibilityState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static VisibilityState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final VisibilityState visible
public static final VisibilityState hidden
public static final VisibilityState prerender
public static final VisibilityState unloaded
public static VisibilityState[] values()
for (VisibilityState c : VisibilityState.values()) System.out.println(c);
public static VisibilityState 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 XDEV Software Corp.. All rights reserved.