Package wbs.utils.util.particles.data
Enum DustOptionsProvider.ColourType
java.lang.Object
java.lang.Enum<DustOptionsProvider.ColourType>
wbs.utils.util.particles.data.DustOptionsProvider.ColourType
- All Implemented Interfaces:
Serializable,Comparable<DustOptionsProvider.ColourType>,java.lang.constant.Constable
- Enclosing class:
- DustOptionsProvider
Determines how the
VectorProvider is treated as a colour-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescription -
Method Summary
Modifier and TypeMethodDescriptionorg.bukkit.Colorparse(VectorProvider provider) Gets a colour from the given provider, in the format of this enum instance.Returns the enum constant of this type with the specified name.static DustOptionsProvider.ColourType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
INT255
-
DECIMAL
-
HSB
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
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
-
parse
Gets a colour from the given provider, in the format of this enum instance.- Parameters:
provider- The provider to be queried and immediately converted into the appropriateColor- Returns:
- The colour represented by the current value of the given provider.
-