Class VulkanCommandPoolCreateInfo.Builder
java.lang.Object
com.io7m.jcoronado.api.VulkanCommandPoolCreateInfo.Builder
- Enclosing class:
VulkanCommandPoolCreateInfo
Builds instances of type
VulkanCommandPoolCreateInfo.
Initialize attributes and then invoke the build() method to create an
immutable instance.
Builder is not thread-safe and generally should not be stored in a field or collection,
but instead used immediately to create instances.
-
Method Summary
Modifier and TypeMethodDescriptionaddAllFlags(Iterable<VulkanCommandPoolCreateFlag> elements) Adds elements toflagsset.addFlags(VulkanCommandPoolCreateFlag element) Adds one element toflagsset.addFlags(VulkanCommandPoolCreateFlag... elements) Adds elements toflagsset.build()Builds a newVulkanCommandPoolCreateInfo.from(VulkanCommandPoolCreateInfoType instance) Fill a builder with attribute values from the providedVulkanCommandPoolCreateInfoTypeinstance.setFlags(Iterable<VulkanCommandPoolCreateFlag> elements) Sets or replaces all elements forflagsset.setQueueFamilyIndex(VulkanQueueFamilyIndex queueFamilyIndex) Initializes the value for thequeueFamilyIndexattribute.
-
Method Details
-
from
Fill a builder with attribute values from the providedVulkanCommandPoolCreateInfoTypeinstance. Regular attribute values will be replaced with those from the given instance. Absent optional values will not replace present values. Collection elements and entries will be added, not replaced.- Parameters:
instance- The instance from which to copy values- Returns:
thisbuilder for use in a chained invocation
-
addFlags
Adds one element toflagsset.- Parameters:
element- A flags element- Returns:
thisbuilder for use in a chained invocation
-
addFlags
Adds elements toflagsset.- Parameters:
elements- An array of flags elements- Returns:
thisbuilder for use in a chained invocation
-
setFlags
public final VulkanCommandPoolCreateInfo.Builder setFlags(Iterable<VulkanCommandPoolCreateFlag> elements) Sets or replaces all elements forflagsset.- Parameters:
elements- An iterable of flags elements- Returns:
thisbuilder for use in a chained invocation
-
addAllFlags
public final VulkanCommandPoolCreateInfo.Builder addAllFlags(Iterable<VulkanCommandPoolCreateFlag> elements) Adds elements toflagsset.- Parameters:
elements- An iterable of flags elements- Returns:
thisbuilder for use in a chained invocation
-
setQueueFamilyIndex
public final VulkanCommandPoolCreateInfo.Builder setQueueFamilyIndex(VulkanQueueFamilyIndex queueFamilyIndex) Initializes the value for thequeueFamilyIndexattribute.- Parameters:
queueFamilyIndex- The value for queueFamilyIndex- Returns:
thisbuilder for use in a chained invocation
-
build
Builds a newVulkanCommandPoolCreateInfo.- Returns:
- An immutable instance of VulkanCommandPoolCreateInfo
- Throws:
IllegalStateException- if any required attributes are missing
-