Record Class ServerStatus.Players
java.lang.Object
java.lang.Record
net.minecraft.network.protocol.status.ServerStatus.Players
- Enclosing class:
ServerStatus
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final com.mojang.serialization.Codec<ServerStatus.Players> private final intThe field for themaxrecord component.private final intThe field for theonlinerecord component.private static final com.mojang.serialization.Codec<com.mojang.authlib.GameProfile> private final List<com.mojang.authlib.GameProfile> The field for thesamplerecord component. -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionfinal booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.intmax()Returns the value of themaxrecord component.intonline()Returns the value of theonlinerecord component.List<com.mojang.authlib.GameProfile> sample()Returns the value of thesamplerecord component.final StringtoString()Returns a string representation of this record class.
-
Field Details
-
max
private final int maxThe field for themaxrecord component. -
online
private final int onlineThe field for theonlinerecord component. -
sample
The field for thesamplerecord component. -
PROFILE_CODEC
private static final com.mojang.serialization.Codec<com.mojang.authlib.GameProfile> PROFILE_CODEC -
CODEC
-
-
Constructor Details
-
Players
Creates an instance of aPlayersrecord class.- Parameters:
max- the value for themaxrecord componentonline- the value for theonlinerecord componentsample- the value for thesamplerecord 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 themaxrecord component.- Returns:
- the value of the
maxrecord component
-
online
public int online()Returns the value of theonlinerecord component.- Returns:
- the value of the
onlinerecord component
-
sample
Returns the value of thesamplerecord component.- Returns:
- the value of the
samplerecord component
-