public enum AbsolutePosition extends java.lang.Enum<AbsolutePosition>
Enum Constant and Description |
---|
ABSOLUTE
The area's position (and possible size) is specified with the "left",
"right", "top", and "bottom" properties.
|
AUTO
There is no absolute-positioning constraint.
|
FIXED
The area's position is calculated according to the "absolute" model,
but in addition, the area is fixed with respect to some reference.
|
Modifier and Type | Method and Description |
---|---|
boolean |
isAbsolutelyPositioned()
Indicates whether the area is absolutely positioned or not.
|
static AbsolutePosition |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AbsolutePosition[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AbsolutePosition AUTO
public static final AbsolutePosition ABSOLUTE
public static final AbsolutePosition FIXED
public static AbsolutePosition[] values()
for (AbsolutePosition c : AbsolutePosition.values()) System.out.println(c);
public static AbsolutePosition 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 boolean isAbsolutelyPositioned()
This documentation was created 2017-01-24 at 21:26 GMT by The aXSL Group and may be freely copied. See license for details.