public static enum GridColumn.ColumnWidthMode extends Enum<GridColumn.ColumnWidthMode>
Modifier and Type | Method and Description |
---|---|
static boolean |
isAuto(GridColumn<?> column) |
static boolean |
isFixed(GridColumn<?> column) |
static GridColumn.ColumnWidthMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static GridColumn.ColumnWidthMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GridColumn.ColumnWidthMode FIXED
public static final GridColumn.ColumnWidthMode AUTO
public static GridColumn.ColumnWidthMode[] values()
for (GridColumn.ColumnWidthMode c : GridColumn.ColumnWidthMode.values()) System.out.println(c);
public static GridColumn.ColumnWidthMode 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 nullpublic static boolean isAuto(GridColumn<?> column)
public static boolean isFixed(GridColumn<?> column)
Copyright © 2012–2020 JBoss by Red Hat. All rights reserved.