public static enum Overlay.Position extends Enum<Overlay.Position>
Enum Constant and Description |
---|
BACKGROUND |
FOREGROUND |
Modifier and Type | Method and Description |
---|---|
static Overlay.Position |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Overlay.Position[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Overlay.Position FOREGROUND
public static final Overlay.Position BACKGROUND
public static Overlay.Position[] values()
for (Overlay.Position c : Overlay.Position.values()) System.out.println(c);
public static Overlay.Position 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 © 2002–2018 The Apache Software Foundation. All rights reserved.