Record Class GamesManagerSettings
java.lang.Object
java.lang.Record
fr.multimc.api.spigot.games.settings.GamesManagerSettings
public record GamesManagerSettings(@NotNull GameSettings gameSettings, @NotNull Class<? extends GameInstance> instanceClass, @NotNull MmcWorld lobbyWorld, @NotNull MmcWorld gameWorld, @Nullable MessagesFactory messagesFactory)
extends Record
-
Constructor Summary
ConstructorsConstructorDescriptionGamesManagerSettings
(@NotNull GameSettings gameSettings, @NotNull Class<? extends GameInstance> instanceClass, @NotNull MmcWorld lobbyWorld, @NotNull MmcWorld gameWorld, @Nullable MessagesFactory messagesFactory) Creates an instance of aGamesManagerSettings
record class. -
Method Summary
Modifier and TypeMethodDescriptionfinal boolean
Indicates whether some other object is "equal to" this one.@NotNull GameSettings
Returns the value of thegameSettings
record component.@NotNull MmcWorld
Returns the value of thegameWorld
record component.final int
hashCode()
Returns a hash code value for this object.@NotNull Class<? extends GameInstance>
Returns the value of theinstanceClass
record component.@NotNull MmcWorld
Returns the value of thelobbyWorld
record component.@Nullable MessagesFactory
Returns the value of themessagesFactory
record component.final String
toString()
Returns a string representation of this record class.
-
Constructor Details
-
GamesManagerSettings
public GamesManagerSettings(@NotNull @NotNull GameSettings gameSettings, @NotNull @NotNull Class<? extends GameInstance> instanceClass, @NotNull @NotNull MmcWorld lobbyWorld, @NotNull @NotNull MmcWorld gameWorld, @Nullable @Nullable MessagesFactory messagesFactory) Creates an instance of aGamesManagerSettings
record class.- Parameters:
gameSettings
- the value for thegameSettings
record componentinstanceClass
- the value for theinstanceClass
record componentlobbyWorld
- the value for thelobbyWorld
record componentgameWorld
- the value for thegameWorld
record componentmessagesFactory
- the value for themessagesFactory
record 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. All components in this record class are compared withObjects::equals(Object,Object)
. -
gameSettings
Returns the value of thegameSettings
record component.- Returns:
- the value of the
gameSettings
record component
-
instanceClass
Returns the value of theinstanceClass
record component.- Returns:
- the value of the
instanceClass
record component
-
lobbyWorld
Returns the value of thelobbyWorld
record component.- Returns:
- the value of the
lobbyWorld
record component
-
gameWorld
Returns the value of thegameWorld
record component.- Returns:
- the value of the
gameWorld
record component
-
messagesFactory
Returns the value of themessagesFactory
record component.- Returns:
- the value of the
messagesFactory
record component
-