Package net.minecraft.data
Record Class HashCache.ProviderCacheBuilder
java.lang.Object
java.lang.Record
net.minecraft.data.HashCache.ProviderCacheBuilder
- Enclosing class:
- HashCache
static record HashCache.ProviderCacheBuilder(String version, ConcurrentMap<Path,com.google.common.hash.HashCode> data)
extends Record 
- 
Field SummaryFieldsModifier and TypeFieldDescriptionprivate final ConcurrentMap<Path,com.google.common.hash.HashCode> The field for thedatarecord component.private final StringThe field for theversionrecord component.
- 
Constructor SummaryConstructorsConstructorDescriptionProviderCacheBuilder(String p_254186_) ProviderCacheBuilder(String version, ConcurrentMap<Path, com.google.common.hash.HashCode> data) Creates an instance of aProviderCacheBuilderrecord class.
- 
Method SummaryModifier and TypeMethodDescriptionbuild()ConcurrentMap<Path,com.google.common.hash.HashCode> 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- 
versionThe field for theversionrecord component.
- 
dataThe field for thedatarecord component.
 
- 
- 
Constructor Details- 
ProviderCacheBuilderProviderCacheBuilder(String p_254186_) 
- 
ProviderCacheBuilderProviderCacheBuilder(String version, ConcurrentMap<Path, com.google.common.hash.HashCode> data) Creates an instance of aProviderCacheBuilderrecord class.- Parameters:
- version- the value for the- versionrecord component
- data- the value for the- datarecord component
 
 
- 
- 
Method Details- 
put
- 
build
- 
toStringReturns 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.
- 
hashCodepublic 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.
- 
equalsIndicates 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).
- 
versionReturns the value of theversionrecord component.- Returns:
- the value of the versionrecord component
 
- 
dataReturns the value of thedatarecord component.- Returns:
- the value of the datarecord component
 
 
-