Enum VDCConfig.ShulkerBoxColor
- java.lang.Object
-
- java.lang.Enum<VDCConfig.ShulkerBoxColor>
-
- com.therandomlabs.vanilladeathchest.VDCConfig.ShulkerBoxColor
-
- All Implemented Interfaces:
Serializable,Comparable<VDCConfig.ShulkerBoxColor>
- Enclosing class:
- VDCConfig
public static enum VDCConfig.ShulkerBoxColor extends Enum<VDCConfig.ShulkerBoxColor>
The shulker box color.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description BLACKBlack.BLUEBlue.BROWNBrown.CYANCyan.GRAYGray.GREENGreen.LIGHT_BLUELight blue.LIGHT_GRAYLight gray.LIMELime.MAGENTAMagenta.ORANGEOrange.PINKPink.PURPLEPurple.RANDOMRandom color.REDRed.WHITEWhite.YELLOWYellow.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description net.minecraft.util.DyeColorget()Returns this shulker box color as aDyeColor.static VDCConfig.ShulkerBoxColorvalueOf(String name)Returns the enum constant of this type with the specified name.static VDCConfig.ShulkerBoxColor[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
WHITE
public static final VDCConfig.ShulkerBoxColor WHITE
White.
-
ORANGE
public static final VDCConfig.ShulkerBoxColor ORANGE
Orange.
-
MAGENTA
public static final VDCConfig.ShulkerBoxColor MAGENTA
Magenta.
-
LIGHT_BLUE
public static final VDCConfig.ShulkerBoxColor LIGHT_BLUE
Light blue.
-
YELLOW
public static final VDCConfig.ShulkerBoxColor YELLOW
Yellow.
-
LIME
public static final VDCConfig.ShulkerBoxColor LIME
Lime.
-
PINK
public static final VDCConfig.ShulkerBoxColor PINK
Pink.
-
GRAY
public static final VDCConfig.ShulkerBoxColor GRAY
Gray.
-
LIGHT_GRAY
public static final VDCConfig.ShulkerBoxColor LIGHT_GRAY
Light gray.
-
CYAN
public static final VDCConfig.ShulkerBoxColor CYAN
Cyan.
-
PURPLE
public static final VDCConfig.ShulkerBoxColor PURPLE
Purple.
-
BLUE
public static final VDCConfig.ShulkerBoxColor BLUE
Blue.
-
BROWN
public static final VDCConfig.ShulkerBoxColor BROWN
Brown.
-
GREEN
public static final VDCConfig.ShulkerBoxColor GREEN
Green.
-
RED
public static final VDCConfig.ShulkerBoxColor RED
Red.
-
BLACK
public static final VDCConfig.ShulkerBoxColor BLACK
Black.
-
RANDOM
public static final VDCConfig.ShulkerBoxColor RANDOM
Random color.
-
-
Method Detail
-
values
public static VDCConfig.ShulkerBoxColor[] 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 (VDCConfig.ShulkerBoxColor c : VDCConfig.ShulkerBoxColor.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static VDCConfig.ShulkerBoxColor 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
-
get
public net.minecraft.util.DyeColor get()
Returns this shulker box color as aDyeColor.- Returns:
- this shulker box color as a
DyeColor.
-
-