public enum ColumnResizeMode extends Enum<ColumnResizeMode>
| Enum Constant and Description |
|---|
ANIMATED
When column resize mode is set to Animated, columns are resized as they
are dragged.
|
SIMPLE
When column resize mode is set to Simple, dragging to resize a column
will show a marker, and the column will resize only after the mouse
button or touch is released.
|
| Modifier and Type | Method and Description |
|---|---|
static ColumnResizeMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ColumnResizeMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ColumnResizeMode ANIMATED
public static final ColumnResizeMode SIMPLE
public static ColumnResizeMode[] values()
for (ColumnResizeMode c : ColumnResizeMode.values()) System.out.println(c);
public static ColumnResizeMode 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.