Package net.minecraft.resource
Record Class ResourcePackProfile.Metadata
java.lang.Object
java.lang.Record
net.minecraft.resource.ResourcePackProfile.Metadata
- Record Components:
description
-compatibility
-requestedFeatures
-overlays
-
- Enclosing class:
ResourcePackProfile
public static record ResourcePackProfile.Metadata(Text description, ResourcePackCompatibility compatibility, FeatureSet requestedFeatures, List<String> overlays)
extends Record
- Mappings:
Namespace Name official apq$a
intermediary net/minecraft/class_3288$class_7679
named net/minecraft/resource/ResourcePackProfile$Metadata
official a
intermediary comp_999
named description
official b
intermediary comp_1583
named compatibility
official c
intermediary comp_1001
named requestedFeatures
official d
intermediary comp_1584
named overlays
-
Field Summary
Modifier and TypeFieldDescriptionprivate final ResourcePackCompatibility
The field for thecompatibility
record component.private final Text
The field for thedescription
record component.The field for theoverlays
record component.private final FeatureSet
The field for therequestedFeatures
record component. -
Constructor Summary
ConstructorDescriptionMetadata
(Text text, ResourcePackCompatibility resourcePackCompatibility, FeatureSet featureSet, List<String> list) -
Method Summary
Modifier and TypeMethodDescriptionReturns the value of thecompatibility
record component.Returns the value of thedescription
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.overlays()
Returns the value of theoverlays
record component.Returns the value of therequestedFeatures
record component.final String
toString()
Returns a string representation of this record class.
-
Field Details
-
description
The field for thedescription
record component. -
compatibility
The field for thecompatibility
record component. -
requestedFeatures
The field for therequestedFeatures
record component. -
overlays
The field for theoverlays
record component.
-
-
Constructor Details
-
Metadata
public Metadata(Text text, ResourcePackCompatibility resourcePackCompatibility, FeatureSet featureSet, List<String> list)
-
-
Method Details
-
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)
. -
description
Returns the value of thedescription
record component.- Returns:
- the value of the
description
record component
-
compatibility
Returns the value of thecompatibility
record component.- Returns:
- the value of the
compatibility
record component
-
requestedFeatures
Returns the value of therequestedFeatures
record component.- Returns:
- the value of the
requestedFeatures
record component
-
overlays
Returns the value of theoverlays
record component.- Returns:
- the value of the
overlays
record component
-