public static enum PaneBackground.Shape extends Enum<PaneBackground.Shape>
| Enum Constant and Description |
|---|
ARC
Show the background as an arc.
|
SOLID
Show the background as solid.
|
| Modifier and Type | Method and Description |
|---|---|
String |
toString() |
static PaneBackground.Shape |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PaneBackground.Shape[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PaneBackground.Shape SOLID
public static final PaneBackground.Shape ARC
public static PaneBackground.Shape[] values()
for (PaneBackground.Shape c : PaneBackground.Shape.values()) System.out.println(c);
public static PaneBackground.Shape 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 nullpublic String toString()
toString in class Enum<PaneBackground.Shape>Copyright © 2015. All Rights Reserved.