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