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 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 a GamesManagerSettings record class.
      Parameters:
      gameSettings - the value for the gameSettings record component
      instanceClass - the value for the instanceClass record component
      lobbyWorld - the value for the lobbyWorld record component
      gameWorld - the value for the gameWorld record component
      messagesFactory - the value for the messagesFactory record component
  • Method Details

    • toString

      public final String 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.
      Specified by:
      toString in class Record
      Returns:
      a string representation of this object
    • 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.
      Specified by:
      hashCode in class Record
      Returns:
      a hash code value for this object
    • equals

      public final boolean equals(Object o)
      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 with Objects::equals(Object,Object).
      Specified by:
      equals in class Record
      Parameters:
      o - the object with which to compare
      Returns:
      true if this object is the same as the o argument; false otherwise.
    • gameSettings

      @NotNull public @NotNull GameSettings gameSettings()
      Returns the value of the gameSettings record component.
      Returns:
      the value of the gameSettings record component
    • instanceClass

      @NotNull public @NotNull Class<? extends GameInstance> instanceClass()
      Returns the value of the instanceClass record component.
      Returns:
      the value of the instanceClass record component
    • lobbyWorld

      @NotNull public @NotNull MmcWorld lobbyWorld()
      Returns the value of the lobbyWorld record component.
      Returns:
      the value of the lobbyWorld record component
    • gameWorld

      @NotNull public @NotNull MmcWorld gameWorld()
      Returns the value of the gameWorld record component.
      Returns:
      the value of the gameWorld record component
    • messagesFactory

      @Nullable public @Nullable MessagesFactory messagesFactory()
      Returns the value of the messagesFactory record component.
      Returns:
      the value of the messagesFactory record component