public enum Layer extends Enum<Layer>
| Enum Constant and Description |
|---|
BACKGROUND
Background.
|
FOREGROUND
Foreground.
|
| Modifier and Type | Method and Description |
|---|---|
String |
toString()
Returns a string representing the object.
|
static Layer |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Layer[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Layer FOREGROUND
public static final Layer BACKGROUND
public static Layer[] values()
for (Layer c : Layer.values()) System.out.println(c);
public static Layer 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 © 2001–2017 JFree.org. All rights reserved.