Package net.minecraft.server
Record Class ServerMetadata.Players
java.lang.Object
java.lang.Record
net.minecraft.server.ServerMetadata.Players
- Record Components:
- max-
- online-
- sample-
- Enclosing class:
- ServerMetadata
public static record ServerMetadata.Players(int max, int online, List<com.mojang.authlib.GameProfile> sample)
extends Record
- Mappings:
- Namespace - Name - named - net/minecraft/server/ServerMetadata$Players- intermediary - net/minecraft/class_2926$class_2927- official - ajs$b- named - max- intermediary - comp_1279- official - b- named - online- intermediary - comp_1280- official - c- named - sample- intermediary - comp_1281- official - d
- 
Field SummaryFieldsModifier and TypeFieldDescriptionstatic final com.mojang.serialization.Codec<ServerMetadata.Players> private static final com.mojang.serialization.Codec<com.mojang.authlib.GameProfile> private final intThe field for themaxrecord component.private final intThe field for theonlinerecord component.private final List<com.mojang.authlib.GameProfile> The field for thesamplerecord component.
- 
Constructor SummaryConstructors
- 
Method SummaryModifier 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- 
maxprivate final int maxThe field for themaxrecord component.
- 
onlineprivate final int onlineThe field for theonlinerecord component.
- 
sampleThe field for thesamplerecord component.
- 
GAME_PROFILE_CODECprivate static final com.mojang.serialization.Codec<com.mojang.authlib.GameProfile> GAME_PROFILE_CODEC- Mappings:
- Namespace - Name - Mixin selector - named - GAME_PROFILE_CODEC- Lnet/minecraft/server/ServerMetadata$Players;GAME_PROFILE_CODEC:Lcom/mojang/serialization/Codec;- intermediary - field_42541- Lnet/minecraft/class_2926$class_2927;field_42541:Lcom/mojang/serialization/Codec;- official - e- Lajs$b;e:Lcom/mojang/serialization/Codec;
 
- 
CODEC- Mappings:
- Namespace - Name - Mixin selector - named - CODEC- Lnet/minecraft/server/ServerMetadata$Players;CODEC:Lcom/mojang/serialization/Codec;- intermediary - field_42540- Lnet/minecraft/class_2926$class_2927;field_42540:Lcom/mojang/serialization/Codec;- official - a- Lajs$b;a:Lcom/mojang/serialization/Codec;
 
 
- 
- 
Constructor Details- 
Players- Mappings:
- Namespace - Name - Mixin selector - named - <init>- Lnet/minecraft/server/ServerMetadata$Players;<init>(IILjava/util/List;)V- intermediary - <init>- Lnet/minecraft/class_2926$class_2927;<init>(IILjava/util/List;)V- official - <init>- Lajs$b;<init>(IILjava/util/List;)V
 
 
- 
- 
Method Details- 
toStringReturns 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.
- 
hashCodepublic 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.
- 
equalsIndicates 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 '=='.
- 
maxpublic int max()Returns the value of themaxrecord component.- Returns:
- the value of the maxrecord component
 
- 
onlinepublic int online()Returns the value of theonlinerecord component.- Returns:
- the value of the onlinerecord component
 
- 
sampleReturns the value of thesamplerecord component.- Returns:
- the value of the samplerecord component
 
 
-