Package net.minecraft.client.realms
Record Class RealmsPeriodicCheckers.AvailableServers
java.lang.Object
java.lang.Record
net.minecraft.client.realms.RealmsPeriodicCheckers.AvailableServers
- Record Components:
- serverList-
- availableSnapshotServers-
- Enclosing class:
- RealmsPeriodicCheckers
@Environment(CLIENT)
public static record RealmsPeriodicCheckers.AvailableServers(List<RealmsServer> serverList, List<RealmsServer> availableSnapshotServers)
extends Record
- Mappings:
- Namespace - Name - named - net/minecraft/client/realms/RealmsPeriodicCheckers$AvailableServers- intermediary - net/minecraft/class_7578$class_8843- official - fik$a- named - serverList- intermediary - comp_1989- official - a- named - availableSnapshotServers- intermediary - comp_1990- official - b
- 
Field SummaryFieldsModifier and TypeFieldDescriptionprivate final List<RealmsServer> The field for theavailableSnapshotServersrecord component.private final List<RealmsServer> The field for theserverListrecord component.
- 
Constructor SummaryConstructors
- 
Method SummaryModifier and TypeMethodDescriptionReturns the value of theavailableSnapshotServersrecord component.final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.Returns the value of theserverListrecord component.final StringtoString()Returns a string representation of this record class.
- 
Field Details- 
serverListThe field for theserverListrecord component.
- 
availableSnapshotServersThe field for theavailableSnapshotServersrecord component.
 
- 
- 
Constructor Details- 
AvailableServers
 
- 
- 
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. All components in this record class are compared withObjects::equals(Object,Object).
- 
serverListReturns the value of theserverListrecord component.- Returns:
- the value of the serverListrecord component
 
- 
availableSnapshotServersReturns the value of theavailableSnapshotServersrecord component.- Returns:
- the value of the availableSnapshotServersrecord component
 
 
-