public static enum Connect.LoadStyle extends Enum<Connect.LoadStyle>
Enum Constant and Description |
---|
DEFERRED
Not included in the initial set of widgets, but added to queue from
which it will be loaded when network is not busy or the
implementation is required.
|
EAGER
The widget is included in the initial JS sent to the client.
|
LAZY
Loaded to the client only if needed.
|
NONE
Completely left out of the widgetset.
|
Modifier and Type | Method and Description |
---|---|
static Connect.LoadStyle |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Connect.LoadStyle[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Connect.LoadStyle EAGER
public static final Connect.LoadStyle DEFERRED
public static final Connect.LoadStyle LAZY
public static final Connect.LoadStyle NONE
public static Connect.LoadStyle[] values()
for (Connect.LoadStyle c : Connect.LoadStyle.values()) System.out.println(c);
public static Connect.LoadStyle 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 © 2018 Vaadin Ltd. All rights reserved.