public enum HeightMode extends Enum<HeightMode>
client and
server) /
Escalator.com.vaadin.client.ui.grid.Grid#setHeightMode(HeightMode),
com.vaadin.ui.components.grid.Grid#setHeightMode(HeightMode),
com.vaadin.client.ui.grid.Escalator#setHeightMode(HeightMode)| Enum Constant and Description |
|---|
CSS
The height of the Component or Widget is defined by a CSS-like value.
|
ROW
The height of the Component or Widget in question is defined by a number
of rows.
|
UNDEFINED
The height of the Component or Widget in question is defined by its
contents.
|
| Modifier and Type | Method and Description |
|---|---|
static HeightMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static HeightMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final HeightMode CSS
public static final HeightMode ROW
public static final HeightMode UNDEFINED
public static HeightMode[] values()
for (HeightMode c : HeightMode.values()) System.out.println(c);
public static HeightMode 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 © 2021 Vaadin Ltd. All rights reserved.