Record Class ResolvedZigToolchainInfo
java.lang.Object
java.lang.Record
dev.lukebemish.ziggradle.toolchain.internal.ResolvedZigToolchainInfo
public record ResolvedZigToolchainInfo(ZigVersion zigVersion, org.gradle.platform.BuildPlatform buildPlatform)
extends Record
-
Constructor Summary
ConstructorsConstructorDescriptionResolvedZigToolchainInfo(ZigVersion zigVersion, org.gradle.platform.BuildPlatform buildPlatform) Creates an instance of aResolvedZigToolchainInforecord class. -
Method Summary
Modifier and TypeMethodDescriptionorg.gradle.platform.BuildPlatformReturns the value of thebuildPlatformrecord component.final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.booleanmatches(ZigToolchainSpec spec) final StringtoString()Returns a string representation of this record class.Returns the value of thezigVersionrecord component.
-
Constructor Details
-
ResolvedZigToolchainInfo
public ResolvedZigToolchainInfo(ZigVersion zigVersion, org.gradle.platform.BuildPlatform buildPlatform) Creates an instance of aResolvedZigToolchainInforecord class.- Parameters:
zigVersion- the value for thezigVersionrecord componentbuildPlatform- the value for thebuildPlatformrecord component
-
-
Method Details
-
matches
-
toString
Returns a string representation of this record class. The representation contains the name of the class, followed by the name and value of each of the record components. -
hashCode
public final int hashCode()Returns a hash code value for this object. The value is derived from the hash code of each of the record components. -
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). -
zigVersion
Returns the value of thezigVersionrecord component.- Returns:
- the value of the
zigVersionrecord component
-
buildPlatform
public org.gradle.platform.BuildPlatform buildPlatform()Returns the value of thebuildPlatformrecord component.- Returns:
- the value of the
buildPlatformrecord component
-