Class VulkanExtent3D

  • All Implemented Interfaces:
    VulkanExtent3DType

    public final class VulkanExtent3D
    extends java.lang.Object
    implements VulkanExtent3DType
    Structure specifying a three-dimensional extent.
    See Also:
    "VkExtent3D"
    • Method Detail

      • width

        public int width()
        Specified by:
        width in interface VulkanExtent3DType
        Returns:
        The width of the extent
      • depth

        public int depth()
        Specified by:
        depth in interface VulkanExtent3DType
        Returns:
        The depth of the extent
      • withWidth

        public final VulkanExtent3D withWidth​(int value)
        Copy the current immutable object by setting a value for the width attribute. A value equality check is used to prevent copying of the same value by returning this.
        Parameters:
        value - A new value for width
        Returns:
        A modified copy of the this object
      • withHeight

        public final VulkanExtent3D withHeight​(int value)
        Copy the current immutable object by setting a value for the height attribute. A value equality check is used to prevent copying of the same value by returning this.
        Parameters:
        value - A new value for height
        Returns:
        A modified copy of the this object
      • withDepth

        public final VulkanExtent3D withDepth​(int value)
        Copy the current immutable object by setting a value for the depth attribute. A value equality check is used to prevent copying of the same value by returning this.
        Parameters:
        value - A new value for depth
        Returns:
        A modified copy of the this object
      • equals

        public boolean equals​(java.lang.Object another)
        This instance is equal to all instances of VulkanExtent3D that have equal attribute values.
        Overrides:
        equals in class java.lang.Object
        Returns:
        true if this is equal to another instance
      • hashCode

        public int hashCode()
        Computes a hash code from attributes: width, height, depth.
        Overrides:
        hashCode in class java.lang.Object
        Returns:
        hashCode value
      • toString

        public java.lang.String toString()
        Prints the immutable value VulkanExtent3D with attribute values.
        Overrides:
        toString in class java.lang.Object
        Returns:
        A string representation of the value
      • of

        public static VulkanExtent3D of​(int width,
                                        int height,
                                        int depth)
        Construct a new immutable VulkanExtent3D instance.
        Parameters:
        width - The value for the width attribute
        height - The value for the height attribute
        depth - The value for the depth attribute
        Returns:
        An immutable VulkanExtent3D instance
      • copyOf

        public static VulkanExtent3D copyOf​(VulkanExtent3DType instance)
        Creates an immutable copy of a VulkanExtent3DType value. Uses accessors to get values to initialize the new immutable instance. If an instance is already immutable, it is returned as is.
        Parameters:
        instance - The instance to copy
        Returns:
        A copied immutable VulkanExtent3D instance