Enum Class PreviewMode
- All Implemented Interfaces:
Serializable,Comparable<PreviewMode>,Constable
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionPLACED - Regular multiblock placed in the world -
Field Summary
Fields -
Method Summary
Modifier and TypeMethodDescriptionintapplyColors(int originalColor) float[]applyColorsFloat(float r, float g, float b, float a) static PreviewModeReturns the enum constant of this class with the specified name.static PreviewMode[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
PLACED
PLACED - Regular multiblock placed in the worldPREVIEW - In preview and placeable
ENTITY_BLOCKED - In preview with a valid location, but an entity in the way
INVALID - In preview with an invalid place location
-
PREVIEW
-
ENTITY_BLOCKED
-
INVALID
-
-
Field Details
-
alpha
public final float alpha -
red
public final float red -
green
public final float green -
blue
public final float blue
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified nameNullPointerException- if the argument is null
-
applyColors
public int applyColors(int originalColor) -
applyColorsFloat
public float[] applyColorsFloat(float r, float g, float b, float a)
-