public enum LazyPanelWrappingType extends Enum<LazyPanelWrappingType>
wrapChildren is used
by widgets that needs to create some of its children lazily. wrapWholeWidget
is used when the whole widget must be rendered lazily, like when ScreenFactory
is parsing the CruxMetaData and find an invisible panel.| Enum Constant and Description |
|---|
wrapChildren |
wrapWholeWidget |
| Modifier and Type | Method and Description |
|---|---|
static LazyPanelWrappingType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static LazyPanelWrappingType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LazyPanelWrappingType wrapChildren
public static final LazyPanelWrappingType wrapWholeWidget
public static LazyPanelWrappingType[] values()
for (LazyPanelWrappingType c : LazyPanelWrappingType.values()) System.out.println(c);
public static LazyPanelWrappingType 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 © 2015. All rights reserved.