Enum Class VulkanFormatInterpretation
- All Implemented Interfaces:
Serializable,Comparable<VulkanFormatInterpretation>,Constable
The interpretation of data in a format.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionThe data should be interpreted as color values.The data should be interpreted as depth values.The data should be interpreted as depth/stencil values.The data is opaque.The data should be interpreted as stencil values. -
Method Summary
Modifier and TypeMethodDescriptionstatic VulkanFormatInterpretationReturns the enum constant of this class with the specified name.static VulkanFormatInterpretation[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
FORMAT_INTERPRETATION_OPAQUE
The data is opaque. -
FORMAT_INTERPRETATION_COLOR
The data should be interpreted as color values. -
FORMAT_INTERPRETATION_DEPTH
The data should be interpreted as depth values. -
FORMAT_INTERPRETATION_DEPTH_STENCIL
The data should be interpreted as depth/stencil values. -
FORMAT_INTERPRETATION_STENCIL
The data should be interpreted as stencil values.
-
-
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
-