Package net.minecraft.resource
Record Class DataConfiguration
java.lang.Object
java.lang.Record
net.minecraft.resource.DataConfiguration
- Record Components:
dataPacks
-enabledFeatures
-
public record DataConfiguration(DataPackSettings dataPacks, FeatureSet enabledFeatures)
extends Record
- Mappings:
Namespace Name official cko
intermediary net/minecraft/class_7712
named net/minecraft/resource/DataConfiguration
official d
intermediary comp_1010
named dataPacks
official e
intermediary comp_1011
named enabledFeatures
-
Field Summary
Modifier and TypeFieldDescriptionstatic final com.mojang.serialization.Codec<DataConfiguration>
private final DataPackSettings
The field for thedataPacks
record component.static final String
private final FeatureSet
The field for theenabledFeatures
record component.static final DataConfiguration
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionReturns the value of thedataPacks
record component.Returns the value of theenabledFeatures
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.final String
toString()
Returns a string representation of this record class.withFeaturesAdded
(FeatureSet features)
-
Field Details
-
dataPacks
The field for thedataPacks
record component. -
enabledFeatures
The field for theenabledFeatures
record component. -
ENABLED_FEATURES_KEY
- See Also:
- Mappings:
Namespace Name Mixin selector official a
Lcko;a:Ljava/lang/String;
intermediary field_40258
Lnet/minecraft/class_7712;field_40258:Ljava/lang/String;
named ENABLED_FEATURES_KEY
Lnet/minecraft/resource/DataConfiguration;ENABLED_FEATURES_KEY:Ljava/lang/String;
-
CODEC
- Mappings:
Namespace Name Mixin selector official b
Lcko;b:Lcom/mojang/serialization/Codec;
intermediary field_40259
Lnet/minecraft/class_7712;field_40259:Lcom/mojang/serialization/Codec;
named CODEC
Lnet/minecraft/resource/DataConfiguration;CODEC:Lcom/mojang/serialization/Codec;
-
SAFE_MODE
- Mappings:
Namespace Name Mixin selector official c
Lcko;c:Lcko;
intermediary field_40260
Lnet/minecraft/class_7712;field_40260:Lnet/minecraft/class_7712;
named SAFE_MODE
Lnet/minecraft/resource/DataConfiguration;SAFE_MODE:Lnet/minecraft/resource/DataConfiguration;
-
-
Constructor Details
-
DataConfiguration
-
-
Method Details
-
withFeaturesAdded
- Mappings:
Namespace Name Mixin selector official a
Lcko;a(Lbyx;)Lcko;
intermediary method_45449
Lnet/minecraft/class_7712;method_45449(Lnet/minecraft/class_7699;)Lnet/minecraft/class_7712;
named withFeaturesAdded
Lnet/minecraft/resource/DataConfiguration;withFeaturesAdded(Lnet/minecraft/resource/featuretoggle/FeatureSet;)Lnet/minecraft/resource/DataConfiguration;
-
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)
. -
dataPacks
Returns the value of thedataPacks
record component.- Returns:
- the value of the
dataPacks
record component
-
enabledFeatures
Returns the value of theenabledFeatures
record component.- Returns:
- the value of the
enabledFeatures
record component
-