|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<Position>
com.osbcp.css.constants.Position
public enum Position
Values for the position property.
Enum Constant Summary | |
---|---|
ABSOLUTE
The element is positioned relative to its first positioned (not static) ancestor element. |
|
FIXED
The element is positioned relative to the browser window. |
|
INHERIT
The value of the position property is inherited from the parent element. |
|
RELATIVE
The element is positioned relative to its normal position, so "left:20" adds 20 pixels to the element's LEFT position. |
|
STATIC
Elements renders in order, as they appear in the document flow. |
Method Summary | |
---|---|
java.lang.String |
toString()
|
static Position |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static Position[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
Methods inherited from class java.lang.Enum |
---|
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final Position ABSOLUTE
public static final Position FIXED
public static final Position RELATIVE
public static final Position STATIC
public static final Position INHERIT
Method Detail |
---|
public static Position[] values()
for (Position c : Position.values()) System.out.println(c);
public static Position 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 name
java.lang.NullPointerException
- if the argument is nullpublic java.lang.String toString()
toString
in class java.lang.Enum<Position>
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |