Enum DrawTileEffectRenderingBoEffects
- java.lang.Object
-
- java.lang.Enum<DrawTileEffectRenderingBoEffects>
-
- de.extio.spacecraft.shared.model.client.renderer.DrawTileEffectRenderingBoEffects
-
- All Implemented Interfaces:
Serializable
,Comparable<DrawTileEffectRenderingBoEffects>
public enum DrawTileEffectRenderingBoEffects extends Enum<DrawTileEffectRenderingBoEffects>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CHECKMARK
CROSS
DECORATIVE_BORDER
FIELD
FIELD_RND_DOTS
FIELD_RND_RECTS
HEALTH_BAR
RASTER_FLOOR
RASTER_STANDALONE
SOLID_COLOR
TEXT
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static DrawTileEffectRenderingBoEffects
valueOf(String name)
Returns the enum constant of this type with the specified name.static DrawTileEffectRenderingBoEffects[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
SOLID_COLOR
public static final DrawTileEffectRenderingBoEffects SOLID_COLOR
-
FIELD
public static final DrawTileEffectRenderingBoEffects FIELD
-
FIELD_RND_RECTS
public static final DrawTileEffectRenderingBoEffects FIELD_RND_RECTS
-
FIELD_RND_DOTS
public static final DrawTileEffectRenderingBoEffects FIELD_RND_DOTS
-
CROSS
public static final DrawTileEffectRenderingBoEffects CROSS
-
RASTER_STANDALONE
public static final DrawTileEffectRenderingBoEffects RASTER_STANDALONE
-
RASTER_FLOOR
public static final DrawTileEffectRenderingBoEffects RASTER_FLOOR
-
CHECKMARK
public static final DrawTileEffectRenderingBoEffects CHECKMARK
-
HEALTH_BAR
public static final DrawTileEffectRenderingBoEffects HEALTH_BAR
-
TEXT
public static final DrawTileEffectRenderingBoEffects TEXT
-
DECORATIVE_BORDER
public static final DrawTileEffectRenderingBoEffects DECORATIVE_BORDER
-
-
Method Detail
-
values
public static DrawTileEffectRenderingBoEffects[] 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 (DrawTileEffectRenderingBoEffects c : DrawTileEffectRenderingBoEffects.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static DrawTileEffectRenderingBoEffects 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
-
-