Record Class BundleDependency
java.lang.Object
java.lang.Record
de.luckymcdev.foundryengine.common.bundle.info.BundleDependency
public record BundleDependency(String id, String version, BundleDependency.Type type)
extends Record
-
Nested Class Summary
Nested Classes -
Field Summary
Fields -
Constructor Summary
ConstructorsConstructorDescriptionBundleDependency(String id, String version, BundleDependency.Type type) Creates an instance of aBundleDependencyrecord 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.id()Returns the value of theidrecord component.static BundleDependencytoString()Returns a string representation of this record class.type()Returns the value of thetyperecord component.version()Returns the value of theversionrecord component.
-
Field Details
-
CODEC
-
-
Constructor Details
-
BundleDependency
Creates an instance of aBundleDependencyrecord class.- Parameters:
id- the value for theidrecord componentversion- the value for theversionrecord componenttype- the value for thetyperecord component
-
-
Method Details
-
parse
-
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). -
id
Returns the value of theidrecord component.- Returns:
- the value of the
idrecord component
-
version
Returns the value of theversionrecord component.- Returns:
- the value of the
versionrecord component
-
type
Returns the value of thetyperecord component.- Returns:
- the value of the
typerecord component
-