Record Class HashCache.ProviderCacheBuilder
java.lang.Object
java.lang.Record
net.minecraft.data.HashCache.ProviderCacheBuilder
- Enclosing class:
HashCache
private static record HashCache.ProviderCacheBuilder(String version, ConcurrentMap<Path,HashCode> data)
extends Record
-
Field Summary
Fields -
Constructor Summary
ConstructorsModifierConstructorDescription(package private)ProviderCacheBuilder(String version) privateProviderCacheBuilder(String version, ConcurrentMap<Path, HashCode> data) Creates an instance of aProviderCacheBuilderrecord class. -
Method Summary
Modifier and TypeMethodDescriptionbuild()data()Returns the value of thedatarecord component.final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.voidfinal StringtoString()Returns a string representation of this record class.version()Returns the value of theversionrecord component.
-
Field Details
-
version
The field for theversionrecord component. -
data
The field for thedatarecord component.
-
-
Constructor Details
-
ProviderCacheBuilder
ProviderCacheBuilder(String version) -
ProviderCacheBuilder
Creates an instance of aProviderCacheBuilderrecord class.- Parameters:
version- the value for theversionrecord componentdata- the value for thedatarecord component
-
-
Method Details
-
put
-
build
-
toString
-
hashCode
-
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 theversionrecord component.- Returns:
- the value of the
versionrecord component
-
data
Returns the value of thedatarecord component.- Returns:
- the value of the
datarecord component
-