Enum Class VulkanValidationDebugActionValue
java.lang.Object
java.lang.Enum<VulkanValidationDebugActionValue>
com.io7m.jcoronado.layers.khronos_validation.api.VulkanValidationDebugActionValue
- All Implemented Interfaces:
Serializable, Comparable<VulkanValidationDebugActionValue>, Constable
Specifies what action is to be taken when a layer reports information.
-
Nested Class Summary
Nested classes/interfaces inherited from class Enum
Enum.EnumDesc<E> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionTrigger a breakpoint if a debugger is in use.Log a txt message using the Windows OutputDebugString function.Log a txt message to stdout or to a log filename. -
Method Summary
Modifier and TypeMethodDescriptionReturns the enum constant of this class with the specified name.static VulkanValidationDebugActionValue[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
VK_DBG_LAYER_ACTION_LOG_MSG
Log a txt message to stdout or to a log filename. -
VK_DBG_LAYER_ACTION_DEBUG_OUTPUT
Log a txt message using the Windows OutputDebugString function. -
VK_DBG_LAYER_ACTION_BREAK
Trigger a breakpoint if a debugger is in use.
-
-
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
-