Enum Class VulkanLogicalDeviceType.VulkanWaitStatus
java.lang.Object
java.lang.Enum<VulkanLogicalDeviceType.VulkanWaitStatus>
com.io7m.jcoronado.api.VulkanLogicalDeviceType.VulkanWaitStatus
- All Implemented Interfaces:
Serializable, Comparable<VulkanLogicalDeviceType.VulkanWaitStatus>, Constable
- Enclosing interface:
VulkanLogicalDeviceType
public static enum VulkanLogicalDeviceType.VulkanWaitStatus
extends Enum<VulkanLogicalDeviceType.VulkanWaitStatus>
The result of waiting.
-
Nested Class Summary
Nested classes/interfaces inherited from class Enum
Enum.EnumDesc<E> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionSpecifies that waiting for a condition succeeded (the condition becametrue).Specifies that waiting for a condition timed out (the condition did not becometrue). -
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
-
VK_WAIT_SUCCEEDED
Specifies that waiting for a condition succeeded (the condition becametrue). -
VK_WAIT_TIMED_OUT
Specifies that waiting for a condition timed out (the condition did not becometrue).
-
-
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
-