Record Class DependencyInfo
java.lang.Object
java.lang.Record
org.geysermc.floodgate.isolation.library.info.DependencyInfo
-
Constructor Summary
ConstructorsConstructorDescriptionDependencyInfo(String groupId, String artifactId, String version, byte[] sha256) Creates an instance of aDependencyInforecord class. -
Method Summary
Modifier and TypeMethodDescriptionReturns the value of theartifactIdrecord component.final booleanIndicates whether some other object is "equal to" this one.static DependencyInfofromString(String string) groupId()Returns the value of thegroupIdrecord component.final inthashCode()Returns a hash code value for this object.byte[]sha256()Returns the value of thesha256record component.final StringtoString()Returns a string representation of this record class.version()Returns the value of theversionrecord component.
-
Constructor Details
-
DependencyInfo
Creates an instance of aDependencyInforecord class.- Parameters:
groupId- the value for thegroupIdrecord componentartifactId- the value for theartifactIdrecord componentversion- the value for theversionrecord componentsha256- the value for thesha256record component
-
-
Method Details
-
fromString
-
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). -
groupId
Returns the value of thegroupIdrecord component.- Returns:
- the value of the
groupIdrecord component
-
artifactId
Returns the value of theartifactIdrecord component.- Returns:
- the value of the
artifactIdrecord component
-
version
Returns the value of theversionrecord component.- Returns:
- the value of the
versionrecord component
-
sha256
public byte[] sha256()Returns the value of thesha256record component.- Returns:
- the value of the
sha256record component
-