Enum Class VulkanClearValueType.VulkanClearValueColorType.ColorType
java.lang.Object
java.lang.Enum<VulkanClearValueType.VulkanClearValueColorType.ColorType>
com.io7m.jcoronado.api.VulkanClearValueType.VulkanClearValueColorType.ColorType
- All Implemented Interfaces:
Serializable, Comparable<VulkanClearValueType.VulkanClearValueColorType.ColorType>, Constable
- Enclosing interface:
VulkanClearValueType.VulkanClearValueColorType
public static enum VulkanClearValueType.VulkanClearValueColorType.ColorType
extends Enum<VulkanClearValueType.VulkanClearValueColorType.ColorType>
The actual type of clea value.
-
Nested Class Summary
Nested classes/interfaces inherited from class Enum
Enum.EnumDesc<E> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionA color consisting of floating-point components.A color consisting of signed integer components.A color consisting of unsigned integer components. -
Method Summary
Modifier and TypeMethodDescriptionReturns the enum constant of this class with the specified name.values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
COLOR_INTEGER_SIGNED
A color consisting of signed integer components. -
COLOR_INTEGER_UNSIGNED
A color consisting of unsigned integer components. -
COLOR_FLOATING_POINT
A color consisting of floating-point components.
-
-
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
-