public static enum Marker.Anchor extends Enum<Marker.Anchor>
Enum Constant and Description |
---|
BOTTOM_CENTER |
CENTER |
NONE |
Modifier and Type | Method and Description |
---|---|
static Marker.Anchor |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Marker.Anchor[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Marker.Anchor NONE
public static final Marker.Anchor CENTER
public static final Marker.Anchor BOTTOM_CENTER
public static Marker.Anchor[] values()
for (Marker.Anchor c : Marker.Anchor.values()) System.out.println(c);
public static Marker.Anchor 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.