public enum MapIconType extends Enum<MapIconType>
| Enum Constant and Description |
|---|
BLUE_ARROW |
GREEN_ARROW |
MANSION |
RED_ARROW |
RED_POINTER |
SMALL_WHITE_CIRCLE |
TEMPLE |
UNUSED_10 |
UNUSED_11 |
UNUSED_12 |
UNUSED_13 |
UNUSED_14 |
UNUSED_15 |
WHITE_ARROW |
WHITE_CIRCLE |
WHITE_CROSS |
| Modifier and Type | Method and Description |
|---|---|
static MapIconType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MapIconType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MapIconType WHITE_ARROW
public static final MapIconType GREEN_ARROW
public static final MapIconType RED_ARROW
public static final MapIconType BLUE_ARROW
public static final MapIconType WHITE_CROSS
public static final MapIconType RED_POINTER
public static final MapIconType WHITE_CIRCLE
public static final MapIconType SMALL_WHITE_CIRCLE
public static final MapIconType MANSION
public static final MapIconType TEMPLE
public static final MapIconType UNUSED_10
public static final MapIconType UNUSED_11
public static final MapIconType UNUSED_12
public static final MapIconType UNUSED_13
public static final MapIconType UNUSED_14
public static final MapIconType UNUSED_15
public static MapIconType[] values()
for (MapIconType c : MapIconType.values()) System.out.println(c);
public static MapIconType 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 © 2020. All rights reserved.