public enum TableLayout extends java.lang.Enum<TableLayout>
Enum Constant and Description |
---|
AUTO
Use any automatic table layout algorithm.
|
FIXED
Use the fixed table layout algorithm.
|
Modifier and Type | Method and Description |
---|---|
boolean |
isFixed()
Indicates whether this table layout is fixed.
|
static TableLayout |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static TableLayout[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TableLayout AUTO
public static final TableLayout FIXED
public static TableLayout[] values()
for (TableLayout c : TableLayout.values()) System.out.println(c);
public static TableLayout valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullpublic boolean isFixed()
This documentation was created 2017-01-24 at 21:26 GMT by The aXSL Group and may be freely copied. See license for details.