Package net.minecraft.server
Record Class SaveLoader
java.lang.Object
java.lang.Record
net.minecraft.server.SaveLoader
- Record Components:
resourceManager
-dataPackContents
-dynamicRegistryManager
-saveProperties
-
- All Implemented Interfaces:
AutoCloseable
public record SaveLoader(LifecycledResourceManager resourceManager, DataPackContents dataPackContents, DynamicRegistryManager.Immutable dynamicRegistryManager, SaveProperties saveProperties)
extends Record
implements AutoCloseable
- Mappings:
Namespace Name official zk
intermediary net/minecraft/class_6904
named net/minecraft/server/SaveLoader
official a
intermediary comp_356
named resourceManager
official b
intermediary comp_357
named dataPackContents
official c
intermediary comp_358
named dynamicRegistryManager
official d
intermediary comp_359
named saveProperties
-
Nested Class Summary
Modifier and TypeClassDescriptionstatic interface
static final record
static interface
-
Field Summary
Modifier and TypeFieldDescriptionprivate final DataPackContents
The field for thedataPackContents
record component.private final DynamicRegistryManager.Immutable
The field for thedynamicRegistryManager
record component.private final LifecycledResourceManager
The field for theresourceManager
record component.private final SaveProperties
The field for thesaveProperties
record component. -
Constructor Summary
ConstructorDescriptionSaveLoader
(LifecycledResourceManager lifecycledResourceManager, DataPackContents dataPackContents, DynamicRegistryManager.Immutable immutable, SaveProperties saveProperties) -
Method Summary
Modifier and TypeMethodDescriptionvoid
close()
Returns the value of thedataPackContents
record component.Returns the value of thedynamicRegistryManager
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.static CompletableFuture<SaveLoader>
ofLoaded
(SaveLoader.FunctionLoaderConfig functionLoaderConfig, SaveLoader.DataPackSettingsSupplier dataPackSettingsSupplier, SaveLoader.SavePropertiesSupplier savePropertiesSupplier, Executor prepareExecutor, Executor applyExecutor) void
refresh()
Returns the value of theresourceManager
record component.Returns the value of thesaveProperties
record component.final String
toString()
Returns a string representation of this record class.
-
Field Details
-
resourceManager
The field for theresourceManager
record component. -
dataPackContents
The field for thedataPackContents
record component. -
dynamicRegistryManager
The field for thedynamicRegistryManager
record component. -
saveProperties
The field for thesaveProperties
record component.
-
-
Constructor Details
-
SaveLoader
public SaveLoader(LifecycledResourceManager lifecycledResourceManager, DataPackContents dataPackContents, DynamicRegistryManager.Immutable immutable, SaveProperties saveProperties)
-
-
Method Details
-
ofLoaded
public static CompletableFuture<SaveLoader> ofLoaded(SaveLoader.FunctionLoaderConfig functionLoaderConfig, SaveLoader.DataPackSettingsSupplier dataPackSettingsSupplier, SaveLoader.SavePropertiesSupplier savePropertiesSupplier, Executor prepareExecutor, Executor applyExecutor) - Mappings:
Namespace Name Mixin selector official a
Lzk;a(Lzk$b;Lzk$a;Lzk$c;Ljava/util/concurrent/Executor;Ljava/util/concurrent/Executor;)Ljava/util/concurrent/CompletableFuture;
intermediary method_40431
Lnet/minecraft/class_6904;method_40431(Lnet/minecraft/class_6904$class_6906;Lnet/minecraft/class_6904$class_6905;Lnet/minecraft/class_6904$class_6907;Ljava/util/concurrent/Executor;Ljava/util/concurrent/Executor;)Ljava/util/concurrent/CompletableFuture;
named ofLoaded
Lnet/minecraft/server/SaveLoader;ofLoaded(Lnet/minecraft/server/SaveLoader$FunctionLoaderConfig;Lnet/minecraft/server/SaveLoader$DataPackSettingsSupplier;Lnet/minecraft/server/SaveLoader$SavePropertiesSupplier;Ljava/util/concurrent/Executor;Ljava/util/concurrent/Executor;)Ljava/util/concurrent/CompletableFuture;
-
close
public void close()- Specified by:
close
in interfaceAutoCloseable
-
refresh
public void refresh()- Mappings:
Namespace Name Mixin selector official a
Lzk;a()V
intermediary method_40428
Lnet/minecraft/class_6904;method_40428()V
named refresh
Lnet/minecraft/server/SaveLoader;refresh()V
-
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)
. -
resourceManager
Returns the value of theresourceManager
record component.- Returns:
- the value of the
resourceManager
record component
-
dataPackContents
Returns the value of thedataPackContents
record component.- Returns:
- the value of the
dataPackContents
record component
-
dynamicRegistryManager
Returns the value of thedynamicRegistryManager
record component.- Returns:
- the value of the
dynamicRegistryManager
record component
-
saveProperties
Returns the value of thesaveProperties
record component.- Returns:
- the value of the
saveProperties
record component
-