Package net.minecraft.data
Record Class DataCache.IntermediaryCache
java.lang.Object
java.lang.Record
net.minecraft.data.DataCache.IntermediaryCache
- Record Components:
version
-data
-
- Enclosing class:
DataCache
private static record DataCache.IntermediaryCache(String version, ConcurrentMap<Path,HashCode> data)
extends Record
- Mappings:
Namespace Name official jj$c
intermediary net/minecraft/class_2408$class_7858
named net/minecraft/data/DataCache$IntermediaryCache
official a
intermediary comp_1122
named version
official b
intermediary comp_1123
named data
-
Field Summary
-
Constructor Summary
ModifierConstructorDescription(package private)
IntermediaryCache
(String version) private
IntermediaryCache
(String string, ConcurrentMap<Path, HashCode> concurrentMap) -
Method Summary
Modifier and TypeMethodDescriptiondata()
Returns the value of thedata
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.void
final String
toString()
Returns a string representation of this record class.version()
Returns the value of theversion
record component.
-
Field Details
-
Constructor Details
-
IntermediaryCache
IntermediaryCache(String version) - Mappings:
Namespace Name Mixin selector official <init>
Ljj$c;<init>(Ljava/lang/String;)V
intermediary <init>
Lnet/minecraft/class_2408$class_7858;<init>(Ljava/lang/String;)V
named <init>
Lnet/minecraft/data/DataCache$IntermediaryCache;<init>(Ljava/lang/String;)V
-
IntermediaryCache
-
-
Method Details
-
put
- Mappings:
Namespace Name Mixin selector official a
Ljj$c;a(Ljava/nio/file/Path;Lcom/google/common/hash/HashCode;)V
intermediary method_46574
Lnet/minecraft/class_2408$class_7858;method_46574(Ljava/nio/file/Path;Lcom/google/common/hash/HashCode;)V
named put
Lnet/minecraft/data/DataCache$IntermediaryCache;put(Ljava/nio/file/Path;Lcom/google/common/hash/HashCode;)V
-
toCachedData
- Mappings:
Namespace Name Mixin selector official a
Ljj$c;a()Ljj$b;
intermediary method_46573
Lnet/minecraft/class_2408$class_7858;method_46573()Lnet/minecraft/class_2408$class_7405;
named toCachedData
Lnet/minecraft/data/DataCache$IntermediaryCache;toCachedData()Lnet/minecraft/data/DataCache$CachedData;
-
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)
. -
version
Returns the value of theversion
record component.- Returns:
- the value of the
version
record component
-
data
Returns the value of thedata
record component.- Returns:
- the value of the
data
record component
-