Package net.minecraft.server
Record Class WorldStem.InitConfig
java.lang.Object
java.lang.Record
net.minecraft.server.WorldStem.InitConfig
- Enclosing class:
- WorldStem
public static record WorldStem.InitConfig(PackRepository packRepository, Commands.CommandSelection commandSelection, int functionCompilationLevel, boolean safeMode)
extends Record
-
Field Summary
FieldsModifier and TypeFieldDescriptionprivate final Commands.CommandSelectionThe field for thecommandSelectionrecord component.private final intThe field for thefunctionCompilationLevelrecord component.private final PackRepositoryThe field for thepackRepositoryrecord component.private final booleanThe field for thesafeModerecord component. -
Constructor Summary
ConstructorsConstructorDescriptionInitConfig(PackRepository packRepository, Commands.CommandSelection commandSelection, int functionCompilationLevel, boolean safeMode) Creates an instance of aInitConfigrecord class. -
Method Summary
Modifier and TypeMethodDescriptionReturns the value of thecommandSelectionrecord component.final booleanIndicates whether some other object is "equal to" this one.intReturns the value of thefunctionCompilationLevelrecord component.final inthashCode()Returns a hash code value for this object.Returns the value of thepackRepositoryrecord component.booleansafeMode()Returns the value of thesafeModerecord component.final StringtoString()Returns a string representation of this record class.
-
Field Details
-
packRepository
The field for thepackRepositoryrecord component. -
commandSelection
The field for thecommandSelectionrecord component. -
functionCompilationLevel
private final int functionCompilationLevelThe field for thefunctionCompilationLevelrecord component. -
safeMode
private final boolean safeModeThe field for thesafeModerecord component.
-
-
Constructor Details
-
InitConfig
public InitConfig(PackRepository packRepository, Commands.CommandSelection commandSelection, int functionCompilationLevel, boolean safeMode) Creates an instance of aInitConfigrecord class.- Parameters:
packRepository- the value for thepackRepositoryrecord componentcommandSelection- the value for thecommandSelectionrecord componentfunctionCompilationLevel- the value for thefunctionCompilationLevelrecord componentsafeMode- the value for thesafeModerecord component
-
-
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. Reference components are compared withObjects::equals(Object,Object); primitive components are compared with '=='. -
packRepository
Returns the value of thepackRepositoryrecord component.- Returns:
- the value of the
packRepositoryrecord component
-
commandSelection
Returns the value of thecommandSelectionrecord component.- Returns:
- the value of the
commandSelectionrecord component
-
functionCompilationLevel
public int functionCompilationLevel()Returns the value of thefunctionCompilationLevelrecord component.- Returns:
- the value of the
functionCompilationLevelrecord component
-
safeMode
public boolean safeMode()Returns the value of thesafeModerecord component.- Returns:
- the value of the
safeModerecord component
-