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 - cnf- 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 SummaryFieldsModifier and TypeFieldDescriptionstatic final com.mojang.serialization.Codec<DataConfiguration>private final DataPackSettingsThe field for thedataPacksrecord component.static final Stringprivate final FeatureSetThe field for theenabledFeaturesrecord component.static final DataConfiguration
- 
Constructor SummaryConstructors
- 
Method SummaryModifier and TypeMethodDescriptionReturns the value of thedataPacksrecord component.Returns the value of theenabledFeaturesrecord component.final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.final StringtoString()Returns a string representation of this record class.withFeaturesAdded(FeatureSet features) 
- 
Field Details- 
dataPacksThe field for thedataPacksrecord component.
- 
enabledFeaturesThe field for theenabledFeaturesrecord component.
- 
ENABLED_FEATURES_KEY- See Also:
- Mappings:
- Namespace - Name - Mixin selector - official - a- Lcnf;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- Lcnf;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- Lcnf;c:Lcnf;- 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- Lcnf;a(Lcaw;)Lcnf;- 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;
 
- 
toStringReturns 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.
- 
hashCodepublic 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.
- 
equalsIndicates 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).
- 
dataPacksReturns the value of thedataPacksrecord component.- Returns:
- the value of the dataPacksrecord component
 
- 
enabledFeaturesReturns the value of theenabledFeaturesrecord component.- Returns:
- the value of the enabledFeaturesrecord component
 
 
-