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