Package io.github.waterfallmc.waterfall
Class QueryResult
- java.lang.Object
-
- io.github.waterfallmc.waterfall.QueryResult
-
public class QueryResult extends Object
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected booleancanEqual(Object other)booleanequals(Object o)@NonNull StringgetAddress()The hostname for this server.@NonNull StringgetGameId()The game ID for this server, usually MINECRAFT.@NonNull StringgetGameType()The game type to return, usually SMP.intgetMaxPlayers()The maximum number of players that can be online.@NonNull StringgetMotd()The message of the day to return.intgetOnlinePlayers()The number of players currently online.@NonNull List<String>getPlayers()The players currently online.intgetPort()The port for this server.@NonNull StringgetVersion()The version to return for this server.@NonNull StringgetWorldName()The world name to return.inthashCode()voidsetAddress(@NonNull String address)The hostname for this server.voidsetGameId(@NonNull String gameId)The game ID for this server, usually MINECRAFT.voidsetGameType(@NonNull String gameType)The game type to return, usually SMP.voidsetMaxPlayers(int maxPlayers)The maximum number of players that can be online.voidsetMotd(@NonNull String motd)The message of the day to return.voidsetOnlinePlayers(int onlinePlayers)The number of players currently online.voidsetPort(int port)The port for this server.voidsetVersion(@NonNull String version)The version to return for this server.voidsetWorldName(@NonNull String worldName)The world name to return.StringtoString()
-
-
-
Constructor Detail
-
QueryResult
public QueryResult(@NonNull @NonNull String motd, @NonNull @NonNull String gameType, @NonNull @NonNull String worldName, int onlinePlayers, int maxPlayers, int port, @NonNull @NonNull String address, @NonNull @NonNull String gameId, @NonNull @NonNull List<String> players, @NonNull @NonNull String version)
-
-
Method Detail
-
getMotd
@NonNull public @NonNull String getMotd()
The message of the day to return.
-
getGameType
@NonNull public @NonNull String getGameType()
The game type to return, usually SMP.
-
getWorldName
@NonNull public @NonNull String getWorldName()
The world name to return.
-
getOnlinePlayers
public int getOnlinePlayers()
The number of players currently online.
-
getMaxPlayers
public int getMaxPlayers()
The maximum number of players that can be online.
-
getPort
public int getPort()
The port for this server.
-
getAddress
@NonNull public @NonNull String getAddress()
The hostname for this server.
-
getGameId
@NonNull public @NonNull String getGameId()
The game ID for this server, usually MINECRAFT.
-
getVersion
@NonNull public @NonNull String getVersion()
The version to return for this server.
-
setMotd
public void setMotd(@NonNull @NonNull String motd)The message of the day to return.
-
setGameType
public void setGameType(@NonNull @NonNull String gameType)The game type to return, usually SMP.
-
setWorldName
public void setWorldName(@NonNull @NonNull String worldName)The world name to return.
-
setOnlinePlayers
public void setOnlinePlayers(int onlinePlayers)
The number of players currently online.
-
setMaxPlayers
public void setMaxPlayers(int maxPlayers)
The maximum number of players that can be online.
-
setPort
public void setPort(int port)
The port for this server.
-
setAddress
public void setAddress(@NonNull @NonNull String address)The hostname for this server.
-
setGameId
public void setGameId(@NonNull @NonNull String gameId)The game ID for this server, usually MINECRAFT.
-
setVersion
public void setVersion(@NonNull @NonNull String version)The version to return for this server.
-
canEqual
protected boolean canEqual(Object other)
-
-