Record Class GameSettings
java.lang.Object
java.lang.Record
fr.multimc.api.spigot.games.settings.GameSettings
-
Constructor Summary
ConstructorsConstructorDescriptionGameSettings
(@NotNull Schematic gameSchematic, @NotNull GameType gameType, @Nullable Class<? extends IScoreBoard> scoreboard, @NotNull List<RelativeLocation> spawnPoints, @Nullable List<MmcEntity> entities, @Nullable HashMap<String, Object> customSettings, int duration, int minPlayers, int tickDelay) Constructor of InstanceSettings -
Method Summary
Modifier and TypeMethodDescriptionReturns the value of thecustomSettings
record component.int
duration()
Returns the value of theduration
record component.entities()
Returns the value of theentities
record component.final boolean
Indicates whether some other object is "equal to" this one.Returns the value of thegameSchematic
record component.gameType()
Returns the value of thegameType
record component.final int
hashCode()
Returns a hash code value for this object.int
Returns the value of theminPlayers
record component.Class<? extends IScoreBoard>
Returns the value of thescoreboard
record component.Returns the value of thespawnPoints
record component.int
Returns the value of thetickDelay
record component.final String
toString()
Returns a string representation of this record class.
-
Constructor Details
-
GameSettings
public GameSettings(@NotNull @NotNull Schematic gameSchematic, @NotNull @NotNull GameType gameType, @Nullable @Nullable Class<? extends IScoreBoard> scoreboard, @NotNull @NotNull List<RelativeLocation> spawnPoints, @Nullable @Nullable List<MmcEntity> entities, @Nullable @Nullable HashMap<String, Object> customSettings, int duration, int minPlayers, int tickDelay) Constructor of InstanceSettings- Parameters:
gameSchematic
- File for the game gameSchematicgameType
- GameType of the gameduration
- Duration of the gamespawnPoints
- List of spawn pointsentities
- List of entities to spawncustomSettings
- Custom gameSettingstickDelay
- Delay in game tick between two calls of Instance's tick method
-
-
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 '=='. -
gameSchematic
Returns the value of thegameSchematic
record component.- Returns:
- the value of the
gameSchematic
record component
-
gameType
Returns the value of thegameType
record component.- Returns:
- the value of the
gameType
record component
-
scoreboard
Returns the value of thescoreboard
record component.- Returns:
- the value of the
scoreboard
record component
-
spawnPoints
Returns the value of thespawnPoints
record component.- Returns:
- the value of the
spawnPoints
record component
-
entities
Returns the value of theentities
record component.- Returns:
- the value of the
entities
record component
-
customSettings
Returns the value of thecustomSettings
record component.- Returns:
- the value of the
customSettings
record component
-
duration
public int duration()Returns the value of theduration
record component.- Returns:
- the value of the
duration
record component
-
minPlayers
public int minPlayers()Returns the value of theminPlayers
record component.- Returns:
- the value of the
minPlayers
record component
-
tickDelay
public int tickDelay()Returns the value of thetickDelay
record component.- Returns:
- the value of the
tickDelay
record component
-