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 boolean
canEqual(Object other)
boolean
equals(Object o)
@NonNull String
getAddress()
The hostname for this server.@NonNull String
getGameId()
The game ID for this server, usually MINECRAFT.@NonNull String
getGameType()
The game type to return, usually SMP.int
getMaxPlayers()
The maximum number of players that can be online.@NonNull String
getMotd()
The message of the day to return.int
getOnlinePlayers()
The number of players currently online.@NonNull List<String>
getPlayers()
The players currently online.int
getPort()
The port for this server.@NonNull String
getVersion()
The version to return for this server.@NonNull String
getWorldName()
The world name to return.int
hashCode()
void
setAddress(@NonNull String address)
The hostname for this server.void
setGameId(@NonNull String gameId)
The game ID for this server, usually MINECRAFT.void
setGameType(@NonNull String gameType)
The game type to return, usually SMP.void
setMaxPlayers(int maxPlayers)
The maximum number of players that can be online.void
setMotd(@NonNull String motd)
The message of the day to return.void
setOnlinePlayers(int onlinePlayers)
The number of players currently online.void
setPort(int port)
The port for this server.void
setVersion(@NonNull String version)
The version to return for this server.void
setWorldName(@NonNull String worldName)
The world name to return.String
toString()
-
-
-
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)
-
-