public static enum Table.Frame extends java.lang.Enum<Table.Frame>
Enum Constant and Description |
---|
above
The top outside border is shown
|
below
The bottom outside border is shown
|
border
The outside borders are shown on all four sides
|
box
The outside borders are shown on all four sides
|
hsides
The top and bottom outside borders are shown
|
lhs
The left outside border is shown
|
rhs
The right outside border is shown
|
void_
The outside borders are not shown
|
vsides
The left and right outside borders are shown
|
Modifier and Type | Method and Description |
---|---|
java.lang.String |
toString() |
static Table.Frame |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Table.Frame[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Table.Frame void_
public static final Table.Frame above
public static final Table.Frame below
public static final Table.Frame hsides
public static final Table.Frame lhs
public static final Table.Frame rhs
public static final Table.Frame vsides
public static final Table.Frame box
public static final Table.Frame border
public static Table.Frame[] values()
for (Table.Frame c : Table.Frame.values()) System.out.println(c);
public static Table.Frame 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 java.lang.String toString()
toString
in class java.lang.Enum<Table.Frame>