Record Class VulkanConformanceVersion
java.lang.Object
java.lang.Record
com.io7m.jcoronado.api.VulkanConformanceVersion
- Record Components:
major- The major versionminor- The minor versionsubminor- The subminor versionpatch- The patch version
public record VulkanConformanceVersion(int major, int minor, int subminor, int patch)
extends Record
Structure containing the conformance test suite version the implementation is
compliant with.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionVulkanConformanceVersion(int major, int minor, int subminor, int patch) Creates an instance of aVulkanConformanceVersionrecord class. -
Method Summary
Modifier and TypeMethodDescriptionfinal booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.intmajor()Returns the value of themajorrecord component.intminor()Returns the value of theminorrecord component.intpatch()Returns the value of thepatchrecord component.intsubminor()Returns the value of thesubminorrecord component.final StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
VulkanConformanceVersion
public VulkanConformanceVersion(int major, int minor, int subminor, int patch) Creates an instance of aVulkanConformanceVersionrecord class.
-
-
Method Details
-
toString
-
hashCode
-
equals
Indicates whether some other object is "equal to" this one. The objects are equal if the other object is of the same class and if all the record components are equal. All components in this record class are compared with thecomparemethod from their corresponding wrapper classes. -
major
-
minor
-
subminor
-
patch
-