Enum DrawEffectRenderingBoEffects
- java.lang.Object
-
- java.lang.Enum<DrawEffectRenderingBoEffects>
-
- de.extio.spacecraft.shared.model.client.renderer.DrawEffectRenderingBoEffects
-
- All Implemented Interfaces:
Serializable
,Comparable<DrawEffectRenderingBoEffects>
public enum DrawEffectRenderingBoEffects extends Enum<DrawEffectRenderingBoEffects>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ARROW
CIRCLE
CIRCLE_CENTERED
CIRCLE_CENTERED_FILLED
CIRCLE_FILLED
CONE
DECORATIVE_BORDER
DECORATIVE_BORDER_FILLED
LINE
PORTAL_JUMP
RECT
RECT_FILLED
TEXT
WEAPON_ION
WEAPON_LASER
WEAPON_SCANNER
WEAPON_TRACTOR
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static DrawEffectRenderingBoEffects
valueOf(String name)
Returns the enum constant of this type with the specified name.static DrawEffectRenderingBoEffects[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
LINE
public static final DrawEffectRenderingBoEffects LINE
-
RECT
public static final DrawEffectRenderingBoEffects RECT
-
RECT_FILLED
public static final DrawEffectRenderingBoEffects RECT_FILLED
-
CIRCLE
public static final DrawEffectRenderingBoEffects CIRCLE
-
CIRCLE_FILLED
public static final DrawEffectRenderingBoEffects CIRCLE_FILLED
-
CIRCLE_CENTERED
public static final DrawEffectRenderingBoEffects CIRCLE_CENTERED
-
CIRCLE_CENTERED_FILLED
public static final DrawEffectRenderingBoEffects CIRCLE_CENTERED_FILLED
-
ARROW
public static final DrawEffectRenderingBoEffects ARROW
-
CONE
public static final DrawEffectRenderingBoEffects CONE
-
WEAPON_LASER
public static final DrawEffectRenderingBoEffects WEAPON_LASER
-
WEAPON_ION
public static final DrawEffectRenderingBoEffects WEAPON_ION
-
WEAPON_TRACTOR
public static final DrawEffectRenderingBoEffects WEAPON_TRACTOR
-
WEAPON_SCANNER
public static final DrawEffectRenderingBoEffects WEAPON_SCANNER
-
PORTAL_JUMP
public static final DrawEffectRenderingBoEffects PORTAL_JUMP
-
DECORATIVE_BORDER
public static final DrawEffectRenderingBoEffects DECORATIVE_BORDER
-
DECORATIVE_BORDER_FILLED
public static final DrawEffectRenderingBoEffects DECORATIVE_BORDER_FILLED
-
TEXT
public static final DrawEffectRenderingBoEffects TEXT
-
-
Method Detail
-
values
public static DrawEffectRenderingBoEffects[] 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 (DrawEffectRenderingBoEffects c : DrawEffectRenderingBoEffects.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static DrawEffectRenderingBoEffects valueOf(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:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
-