Record Class ServerStatus.Players
java.lang.Object
java.lang.Record
net.minecraft.network.protocol.status.ServerStatus.Players
- Enclosing class:
ServerStatus
-
Field Summary
Modifier and TypeFieldDescriptionstatic final com.mojang.serialization.Codec<ServerStatus.Players>
private final int
The field for themax
record component.private final int
The field for theonline
record component.private static final com.mojang.serialization.Codec<com.mojang.authlib.GameProfile>
private final List<com.mojang.authlib.GameProfile>
The field for thesample
record component. -
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionfinal boolean
Indicates whether some other object is "equal to" this one.final int
hashCode()
Returns a hash code value for this object.int
max()
Returns the value of themax
record component.int
online()
Returns the value of theonline
record component.List<com.mojang.authlib.GameProfile>
sample()
Returns the value of thesample
record component.final String
toString()
Returns a string representation of this record class.
-
Field Details
-
max
private final int maxThe field for themax
record component. -
online
private final int onlineThe field for theonline
record component. -
sample
The field for thesample
record component. -
PROFILE_CODEC
private static final com.mojang.serialization.Codec<com.mojang.authlib.GameProfile> PROFILE_CODEC -
CODEC
-
-
Constructor Details
-
Players
Creates an instance of aPlayers
record class.- Parameters:
max
- the value for themax
record componentonline
- the value for theonline
record componentsample
- the value for thesample
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. Reference components are compared withObjects::equals(Object,Object)
; primitive components are compared with '=='. -
max
public int max()Returns the value of themax
record component.- Returns:
- the value of the
max
record component
-
online
public int online()Returns the value of theonline
record component.- Returns:
- the value of the
online
record component
-
sample
Returns the value of thesample
record component.- Returns:
- the value of the
sample
record component
-