Class VulkanFenceCreateInfo.Builder
java.lang.Object
com.io7m.jcoronado.api.VulkanFenceCreateInfo.Builder
- Enclosing class:
VulkanFenceCreateInfo
Builds instances of type
VulkanFenceCreateInfo
.
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<VulkanFenceCreateFlag> elements) Adds elements toflags
set.addFlags
(VulkanFenceCreateFlag element) Adds one element toflags
set.addFlags
(VulkanFenceCreateFlag... elements) Adds elements toflags
set.build()
Builds a newVulkanFenceCreateInfo
.from
(VulkanFenceCreateInfoType instance) Fill a builder with attribute values from the providedVulkanFenceCreateInfoType
instance.setFlags
(Iterable<VulkanFenceCreateFlag> elements) Sets or replaces all elements forflags
set.
-
Method Details
-
from
Fill a builder with attribute values from the providedVulkanFenceCreateInfoType
instance. 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:
this
builder for use in a chained invocation
-
addFlags
Adds one element toflags
set.- Parameters:
element
- A flags element- Returns:
this
builder for use in a chained invocation
-
addFlags
Adds elements toflags
set.- Parameters:
elements
- An array of flags elements- Returns:
this
builder for use in a chained invocation
-
setFlags
Sets or replaces all elements forflags
set.- Parameters:
elements
- An iterable of flags elements- Returns:
this
builder for use in a chained invocation
-
addAllFlags
Adds elements toflags
set.- Parameters:
elements
- An iterable of flags elements- Returns:
this
builder for use in a chained invocation
-
build
Builds a newVulkanFenceCreateInfo
.- Returns:
- An immutable instance of VulkanFenceCreateInfo
- Throws:
IllegalStateException
- if any required attributes are missing
-