Package net.minecraft.server
Record Class MinecraftServer.ReloadableResources
java.lang.Object
java.lang.Record
net.minecraft.server.MinecraftServer.ReloadableResources
- All Implemented Interfaces:
AutoCloseable
- Enclosing class:
MinecraftServer
public static record MinecraftServer.ReloadableResources(CloseableResourceManager resourceManager, ReloadableServerResources managers)
extends Record
implements AutoCloseable
-
Field Summary
FieldsModifier and TypeFieldDescriptionprivate final ReloadableServerResourcesThe field for themanagersrecord component.private final CloseableResourceManagerThe field for theresourceManagerrecord component. -
Constructor Summary
ConstructorsConstructorDescriptionReloadableResources(CloseableResourceManager resourceManager, ReloadableServerResources managers) Creates an instance of aReloadableResourcesrecord class. -
Method Summary
Modifier and TypeMethodDescriptionvoidclose()final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.managers()Returns the value of themanagersrecord component.Returns the value of theresourceManagerrecord component.final StringtoString()Returns a string representation of this record class.
-
Field Details
-
resourceManager
The field for theresourceManagerrecord component. -
managers
The field for themanagersrecord component.
-
-
Constructor Details
-
ReloadableResources
public ReloadableResources(CloseableResourceManager resourceManager, ReloadableServerResources managers) Creates an instance of aReloadableResourcesrecord class.- Parameters:
resourceManager- the value for theresourceManagerrecord componentmanagers- the value for themanagersrecord component
-
-
Method Details
-
close
public void close()- Specified by:
closein interfaceAutoCloseable
-
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 theresourceManagerrecord component.- Returns:
- the value of the
resourceManagerrecord component
-
managers
Returns the value of themanagersrecord component.- Returns:
- the value of the
managersrecord component
-