public enum CollapseMenuContent extends Enum<CollapseMenuContent>
com.vaadin.ui.Table#setCollapseMenuContent(CollapseMenuContent)| Enum Constant and Description |
|---|
ALL_COLUMNS
All columns are shown in the collapse menu.
|
COLLAPSIBLE_COLUMNS
Only collapsible columns are shown in the collapse menu.
|
| Modifier and Type | Method and Description |
|---|---|
static CollapseMenuContent |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CollapseMenuContent[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CollapseMenuContent ALL_COLUMNS
public static final CollapseMenuContent COLLAPSIBLE_COLUMNS
public static CollapseMenuContent[] values()
for (CollapseMenuContent c : CollapseMenuContent.values()) System.out.println(c);
public static CollapseMenuContent 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 © 2019 Vaadin Ltd. All rights reserved.