public enum VRelativePosition extends Enum<VRelativePosition>
| Enum Constant and Description |
|---|
BOTTOM_MARGIN |
INSIDE_MARGIN |
LINE |
MARGIN |
OUTSIDE_MARGIN |
PAGE |
PARAGRAPH |
TOP_MARGIN |
| Modifier and Type | Method and Description |
|---|---|
static VRelativePosition |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static VRelativePosition[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final VRelativePosition LINE
public static final VRelativePosition BOTTOM_MARGIN
public static final VRelativePosition INSIDE_MARGIN
public static final VRelativePosition MARGIN
public static final VRelativePosition TOP_MARGIN
public static final VRelativePosition OUTSIDE_MARGIN
public static final VRelativePosition PAGE
public static final VRelativePosition PARAGRAPH
public static VRelativePosition[] values()
for (VRelativePosition c : VRelativePosition.values()) System.out.println(c);
public static VRelativePosition 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