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