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 named net/minecraft/data/DataCache$IntermediaryCache
intermediary net/minecraft/class_2408$class_7858
official lx$c
named version
intermediary comp_1122
official a
named data
intermediary comp_1123
official b
-
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 named <init>
Lnet/minecraft/data/DataCache$IntermediaryCache;<init>(Ljava/lang/String;)V
intermediary <init>
Lnet/minecraft/class_2408$class_7858;<init>(Ljava/lang/String;)V
official <init>
Llx$c;<init>(Ljava/lang/String;)V
-
IntermediaryCache
-
-
Method Details
-
put
- Mappings:
Namespace Name Mixin selector named put
Lnet/minecraft/data/DataCache$IntermediaryCache;put(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
official a
Llx$c;a(Ljava/nio/file/Path;Lcom/google/common/hash/HashCode;)V
-
toCachedData
- Mappings:
Namespace Name Mixin selector named toCachedData
Lnet/minecraft/data/DataCache$IntermediaryCache;toCachedData()Lnet/minecraft/data/DataCache$CachedData;
intermediary method_46573
Lnet/minecraft/class_2408$class_7858;method_46573()Lnet/minecraft/class_2408$class_7405;
official a
Llx$c;a()Llx$b;
-
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
-