Record Class VulkanPhysicalDeviceDriverProperties
java.lang.Object
java.lang.Record
com.io7m.jcoronado.api.VulkanPhysicalDeviceDriverProperties
- Record Components:
driverId
- The driver IDdriverName
- The driver namedriverInfo
- The driver infoconformanceVersion
- The test suite conformance version
public record VulkanPhysicalDeviceDriverProperties(VulkanDriverIdType driverId, String driverName, String driverInfo, VulkanConformanceVersion conformanceVersion)
extends Record
Physical device driver properties.
- See Also:
-
Constructor Summary
ConstructorDescriptionVulkanPhysicalDeviceDriverProperties
(VulkanDriverIdType driverId, String driverName, String driverInfo, VulkanConformanceVersion conformanceVersion) Physical device driver properties. -
Method Summary
Modifier and TypeMethodDescriptionReturns the value of theconformanceVersion
record component.driverId()
Returns the value of thedriverId
record component.Returns the value of thedriverInfo
record component.Returns the value of thedriverName
record component.final boolean
Indicates whether some other object is "equal to" this one.final int
hashCode()
Returns a hash code value for this object.final String
toString()
Returns a string representation of this record class.
-
Constructor Details
-
VulkanPhysicalDeviceDriverProperties
public VulkanPhysicalDeviceDriverProperties(VulkanDriverIdType driverId, String driverName, String driverInfo, VulkanConformanceVersion conformanceVersion) Physical device driver properties.- Parameters:
driverId
- The driver IDdriverName
- The driver namedriverInfo
- The driver infoconformanceVersion
- The test suite conformance version- See Also:
-
-
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 withObjects::equals(Object,Object)
. -
driverId
-
driverName
Returns the value of thedriverName
record component.- Returns:
- the value of the
driverName
record component
-
driverInfo
Returns the value of thedriverInfo
record component.- Returns:
- the value of the
driverInfo
record component
-
conformanceVersion
Returns the value of theconformanceVersion
record component.- Returns:
- the value of the
conformanceVersion
record component
-