public static enum Common.BorderSide extends Enum<Common.BorderSide>
| Modifier and Type | Method and Description | 
|---|---|
static Common.BorderSide | 
valueOf(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(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