public static enum BaseSelectInputBuilder.RenderingMode extends Enum<BaseSelectInputBuilder.RenderingMode>
Enum Constant and Description |
---|
NATIVE_SELECT
Renders as native select, i.e. using client browser native rendering.
|
OPTIONS
Renders as an options group (A checkbox group for single selection mode or a radio buttons group for multiple
selection mode)
|
SELECT
Renders as a select field (A ComboBox for single selection mode or a ListSelect for multiple selection mode)
|
Modifier and Type | Method and Description |
---|---|
static BaseSelectInputBuilder.RenderingMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BaseSelectInputBuilder.RenderingMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BaseSelectInputBuilder.RenderingMode NATIVE_SELECT
This rendering mode is not suitable for multi-select mode. In this case, SELECT
will be used as
fallback.
public static final BaseSelectInputBuilder.RenderingMode SELECT
public static final BaseSelectInputBuilder.RenderingMode OPTIONS
public static BaseSelectInputBuilder.RenderingMode[] values()
for (BaseSelectInputBuilder.RenderingMode c : BaseSelectInputBuilder.RenderingMode.values()) System.out.println(c);
public static BaseSelectInputBuilder.RenderingMode 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 The Holon Platform. All rights reserved.