Enum Constant and Description |
---|
ALL |
BOTTOM |
END |
HORIZONTAL |
LEFT |
RIGHT |
START |
TOP |
VERTICAL |
Modifier and Type | Method and Description |
---|---|
static CSSEdge |
fromInt(int value) |
int |
intValue() |
static CSSEdge |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CSSEdge[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CSSEdge LEFT
public static final CSSEdge TOP
public static final CSSEdge RIGHT
public static final CSSEdge BOTTOM
public static final CSSEdge START
public static final CSSEdge END
public static final CSSEdge HORIZONTAL
public static final CSSEdge VERTICAL
public static final CSSEdge ALL
public static CSSEdge[] values()
for (CSSEdge c : CSSEdge.values()) System.out.println(c);
public static CSSEdge 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 int intValue()
public static CSSEdge fromInt(int value)