public static enum WmlTableBorder.Position extends Enum<WmlTableBorder.Position>
Enum Constant and Description |
---|
bottom |
insideH |
insideV |
left |
right |
top |
Modifier and Type | Method and Description |
---|---|
static WmlTableBorder.Position |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static WmlTableBorder.Position[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final WmlTableBorder.Position top
public static final WmlTableBorder.Position bottom
public static final WmlTableBorder.Position left
public static final WmlTableBorder.Position right
public static final WmlTableBorder.Position insideH
public static final WmlTableBorder.Position insideV
public static WmlTableBorder.Position[] values()
for (WmlTableBorder.Position c : WmlTableBorder.Position.values()) System.out.println(c);
public static WmlTableBorder.Position 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 null
jataylor@hairyfatguy.com