public static enum Table.Rules extends java.lang.Enum<Table.Rules>
Enum Constant and Description |
---|
all
Lines between rows and columns
|
cols
Lines between columns
|
groups
Lines between row groups and column groups
|
none
No lines
|
rows
Lines between rows
|
Modifier and Type | Method and Description |
---|---|
static Table.Rules |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Table.Rules[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Table.Rules none
public static final Table.Rules groups
public static final Table.Rules rows
public static final Table.Rules cols
public static final Table.Rules all
public static Table.Rules[] values()
for (Table.Rules c : Table.Rules.values()) System.out.println(c);
public static Table.Rules 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 null