Class VulkanExtent2D

  • All Implemented Interfaces:
    VulkanExtent2DType

    public final class VulkanExtent2D
    extends java.lang.Object
    implements VulkanExtent2DType
    Structure specifying a two-dimensional extent.
    See Also:
    "VkExtent2D"
    • Method Detail

      • width

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

        public final VulkanExtent2D 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 VulkanExtent2D 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
      • equals

        public boolean equals​(java.lang.Object another)
        This instance is equal to all instances of VulkanExtent2D 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.
        Overrides:
        hashCode in class java.lang.Object
        Returns:
        hashCode value
      • toString

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

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

        public static VulkanExtent2D copyOf​(VulkanExtent2DType instance)
        Creates an immutable copy of a VulkanExtent2DType 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 VulkanExtent2D instance