Package net.minecraft.data
Record Class SnbtProvider.CompressedData
java.lang.Object
java.lang.Record
net.minecraft.data.SnbtProvider.CompressedData
- Record Components:
name
-bytes
-snbtContent
-sha1
-
- Enclosing class:
SnbtProvider
private static record SnbtProvider.CompressedData(String name, byte[] bytes, @Nullable String snbtContent, HashCode sha1)
extends Record
- Mappings:
Namespace Name official ms$c
intermediary net/minecraft/class_2463$class_4511
named net/minecraft/data/SnbtProvider$CompressedData
official a
intermediary comp_780
named name
official b
intermediary comp_781
named bytes
official c
intermediary comp_782
named snbtContent
official d
intermediary comp_783
named sha1
-
Field Summary
-
Constructor Summary
ConstructorDescriptionCompressedData
(String name, byte[] bytes, @Nullable String snbtContent, HashCode hashCode) -
Method Summary
Modifier and TypeMethodDescriptionbyte[]
bytes()
Returns the value of thebytes
record component.final boolean
Indicates whether some other object is "equal to" this one.final int
hashCode()
Returns a hash code value for this object.name()
Returns the value of thename
record component.sha1()
Returns the value of thesha1
record component.Returns the value of thesnbtContent
record component.final String
toString()
Returns a string representation of this record class.
-
Field Details
-
name
The field for thename
record component. -
bytes
private final byte[] bytesThe field for thebytes
record component. -
snbtContent
The field for thesnbtContent
record component. -
sha1
The field for thesha1
record component.
-
-
Constructor Details
-
CompressedData
CompressedData(String name, byte[] bytes, @Nullable @Nullable String snbtContent, HashCode hashCode) - Mappings:
Namespace Name Mixin selector official <init>
Lms$c;<init>(Ljava/lang/String;[BLjava/lang/String;Lcom/google/common/hash/HashCode;)V
intermediary <init>
Lnet/minecraft/class_2463$class_4511;<init>(Ljava/lang/String;[BLjava/lang/String;Lcom/google/common/hash/HashCode;)V
named <init>
Lnet/minecraft/data/SnbtProvider$CompressedData;<init>(Ljava/lang/String;[BLjava/lang/String;Lcom/google/common/hash/HashCode;)V
-
-
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)
. -
name
Returns the value of thename
record component.- Returns:
- the value of the
name
record component
-
bytes
public byte[] bytes()Returns the value of thebytes
record component.- Returns:
- the value of the
bytes
record component
-
snbtContent
Returns the value of thesnbtContent
record component.- Returns:
- the value of the
snbtContent
record component
-
sha1
Returns the value of thesha1
record component.- Returns:
- the value of the
sha1
record component
-