Package de.cerus.packetmaps.nmsbase
Enum MapIcon.Type
- java.lang.Object
-
- java.lang.Enum<MapIcon.Type>
-
- de.cerus.packetmaps.nmsbase.MapIcon.Type
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<MapIcon.Type>
- Enclosing class:
- MapIcon
public static enum MapIcon.Type extends java.lang.Enum<MapIcon.Type>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static MapIcon.TypevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static MapIcon.Type[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
PLAYER
public static final MapIcon.Type PLAYER
-
FRAME
public static final MapIcon.Type FRAME
-
RED_MARKER
public static final MapIcon.Type RED_MARKER
-
BLUE_MARKER
public static final MapIcon.Type BLUE_MARKER
-
TARGET_X
public static final MapIcon.Type TARGET_X
-
TARGET_POINT
public static final MapIcon.Type TARGET_POINT
-
PLAYER_OFF_MAP
public static final MapIcon.Type PLAYER_OFF_MAP
-
PLAYER_OFF_LIMITS
public static final MapIcon.Type PLAYER_OFF_LIMITS
-
MANSION
public static final MapIcon.Type MANSION
-
MONUMENT
public static final MapIcon.Type MONUMENT
-
BANNER_WHITE
public static final MapIcon.Type BANNER_WHITE
-
BANNER_ORANGE
public static final MapIcon.Type BANNER_ORANGE
-
BANNER_MAGENTA
public static final MapIcon.Type BANNER_MAGENTA
-
BANNER_LIGHT_BLUE
public static final MapIcon.Type BANNER_LIGHT_BLUE
-
BANNER_YELLOW
public static final MapIcon.Type BANNER_YELLOW
-
BANNER_LIME
public static final MapIcon.Type BANNER_LIME
-
BANNER_PINK
public static final MapIcon.Type BANNER_PINK
-
BANNER_GRAY
public static final MapIcon.Type BANNER_GRAY
-
BANNER_LIGHT_GRAY
public static final MapIcon.Type BANNER_LIGHT_GRAY
-
BANNER_CYAN
public static final MapIcon.Type BANNER_CYAN
-
BANNER_PURPLE
public static final MapIcon.Type BANNER_PURPLE
-
BANNER_BLUE
public static final MapIcon.Type BANNER_BLUE
-
BANNER_BROWN
public static final MapIcon.Type BANNER_BROWN
-
BANNER_GREEN
public static final MapIcon.Type BANNER_GREEN
-
BANNER_RED
public static final MapIcon.Type BANNER_RED
-
BANNER_BLACK
public static final MapIcon.Type BANNER_BLACK
-
RED_X
public static final MapIcon.Type RED_X
-
-
Method Detail
-
values
public static MapIcon.Type[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (MapIcon.Type c : MapIcon.Type.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static MapIcon.Type valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
-