Package net.minecraft.client.network
Record Class ClientCommonNetworkHandler.ConfirmServerResourcePackScreen.Pack
java.lang.Object
java.lang.Record
net.minecraft.client.network.ClientCommonNetworkHandler.ConfirmServerResourcePackScreen.Pack
- Record Components:
id
-url
-hash
-
- Enclosing class:
ClientCommonNetworkHandler.ConfirmServerResourcePackScreen
@Environment(CLIENT)
private static record ClientCommonNetworkHandler.ConfirmServerResourcePackScreen.Pack(UUID id, URL url, String hash)
extends Record
- Mappings:
Namespace Name official fnp$b$a
intermediary net/minecraft/class_8673$class_9058$class_9059
named net/minecraft/client/network/ClientCommonNetworkHandler$ConfirmServerResourcePackScreen$Pack
official a
intermediary comp_2172
named id
official b
intermediary comp_2173
named url
official c
intermediary comp_2174
named hash
-
Field Summary
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionfinal boolean
Indicates whether some other object is "equal to" this one.hash()
Returns the value of thehash
record component.final int
hashCode()
Returns a hash code value for this object.id()
Returns the value of theid
record component.final String
toString()
Returns a string representation of this record class.url()
Returns the value of theurl
record component.
-
Field Details
-
Constructor Details
-
Pack
-
-
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. All components in this record class are compared withObjects::equals(Object,Object)
. -
id
Returns the value of theid
record component.- Returns:
- the value of the
id
record component
-
url
Returns the value of theurl
record component.- Returns:
- the value of the
url
record component
-
hash
Returns the value of thehash
record component.- Returns:
- the value of the
hash
record component
-