public enum HeightMode extends Enum<HeightMode>
com.vaadin.client.widgets.Grid
), server
(com.vaadin.ui.Grid server
), and Escalator
(com.vaadin.client.widgets.Escalator Escalator
).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 © 2018 Vaadin Ltd. All rights reserved.