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
ConstructorsConstructorDescriptionVulkanPhysicalDeviceDriverProperties(VulkanDriverIdType driverId, String driverName, String driverInfo, VulkanConformanceVersion conformanceVersion) Physical device driver properties. -
Method Summary
Modifier and TypeMethodDescriptionReturns the value of theconformanceVersionrecord component.driverId()Returns the value of thedriverIdrecord component.Returns the value of thedriverInforecord component.Returns the value of thedriverNamerecord component.final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.final StringtoString()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 thedriverNamerecord component.- Returns:
- the value of the
driverNamerecord component
-
driverInfo
Returns the value of thedriverInforecord component.- Returns:
- the value of the
driverInforecord component
-
conformanceVersion
Returns the value of theconformanceVersionrecord component.- Returns:
- the value of the
conformanceVersionrecord component
-