Package net.minecraft.util
Record Class Downloader.LogEntry
java.lang.Object
java.lang.Record
net.minecraft.util.Downloader.LogEntry
- Record Components:
- id-
- url-
- time-
- hash-
- errorOrFileInfo-
- Enclosing class:
- Downloader
private static record Downloader.LogEntry(UUID id, String url, Instant time, Optional<String> hash, com.mojang.datafixers.util.Either<String,Downloader.FileInfo> errorOrFileInfo)
extends Record 
- Mappings:
- Namespace - Name - named - net/minecraft/util/Downloader$LogEntry- intermediary - net/minecraft/class_9028$class_9033- official - asx$e- named - id- intermediary - comp_2149- official - b- named - url- intermediary - comp_2150- official - c- named - time- intermediary - comp_2151- official - d- named - hash- intermediary - comp_2152- official - e- named - errorOrFileInfo- intermediary - comp_2153- official - f
- 
Field SummaryFieldsModifier and TypeFieldDescriptionstatic final com.mojang.serialization.Codec<Downloader.LogEntry> private final com.mojang.datafixers.util.Either<String, Downloader.FileInfo> The field for theerrorOrFileInforecord component.The field for thehashrecord component.private final UUIDThe field for theidrecord component.private final InstantThe field for thetimerecord component.private final StringThe field for theurlrecord component.
- 
Constructor SummaryConstructors
- 
Method SummaryModifier and TypeMethodDescriptionfinal booleanIndicates whether some other object is "equal to" this one.com.mojang.datafixers.util.Either<String, Downloader.FileInfo> Returns the value of theerrorOrFileInforecord component.hash()Returns the value of thehashrecord component.final inthashCode()Returns a hash code value for this object.id()Returns the value of theidrecord component.time()Returns the value of thetimerecord component.final StringtoString()Returns a string representation of this record class.url()Returns the value of theurlrecord component.
- 
Field Details- 
idThe field for theidrecord component.
- 
urlThe field for theurlrecord component.
- 
timeThe field for thetimerecord component.
- 
hashThe field for thehashrecord component.
- 
errorOrFileInfoThe field for theerrorOrFileInforecord component.
- 
CODEC- Mappings:
- Namespace - Name - Mixin selector - named - CODEC- Lnet/minecraft/util/Downloader$LogEntry;CODEC:Lcom/mojang/serialization/Codec;- intermediary - field_47577- Lnet/minecraft/class_9028$class_9033;field_47577:Lcom/mojang/serialization/Codec;- official - a- Lasx$e;a:Lcom/mojang/serialization/Codec;
 
 
- 
- 
Constructor Details- 
LogEntry
 
- 
- 
Method Details- 
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).
- 
idReturns the value of theidrecord component.- Returns:
- the value of the idrecord component
 
- 
urlReturns the value of theurlrecord component.- Returns:
- the value of the urlrecord component
 
- 
timeReturns the value of thetimerecord component.- Returns:
- the value of the timerecord component
 
- 
hashReturns the value of thehashrecord component.- Returns:
- the value of the hashrecord component
 
- 
errorOrFileInfoReturns the value of theerrorOrFileInforecord component.- Returns:
- the value of the errorOrFileInforecord component
 
 
-