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 official aos$e
intermediary net/minecraft/class_9028$class_9033
named net/minecraft/util/Downloader$LogEntry
official b
intermediary comp_2149
named id
official c
intermediary comp_2150
named url
official d
intermediary comp_2151
named time
official e
intermediary comp_2152
named hash
official f
intermediary comp_2153
named errorOrFileInfo
-
Field Summary
Modifier and TypeFieldDescriptionstatic final com.mojang.serialization.Codec<Downloader.LogEntry>
private final com.mojang.datafixers.util.Either<String,
Downloader.FileInfo> The field for theerrorOrFileInfo
record component.The field for thehash
record component.private final UUID
The field for theid
record component.private final Instant
The field for thetime
record component.private final String
The field for theurl
record component. -
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionfinal boolean
Indicates whether some other object is "equal to" this one.com.mojang.datafixers.util.Either<String,
Downloader.FileInfo> Returns the value of theerrorOrFileInfo
record component.hash()
Returns the value of thehash
record component.final int
hashCode()
Returns a hash code value for this object.id()
Returns the value of theid
record component.time()
Returns the value of thetime
record component.final String
toString()
Returns a string representation of this record class.url()
Returns the value of theurl
record component.
-
Field Details
-
id
The field for theid
record component. -
url
The field for theurl
record component. -
time
The field for thetime
record component. -
hash
The field for thehash
record component. -
errorOrFileInfo
The field for theerrorOrFileInfo
record component. -
CODEC
- Mappings:
Namespace Name Mixin selector official a
Laos$e;a:Lcom/mojang/serialization/Codec;
intermediary field_47577
Lnet/minecraft/class_9028$class_9033;field_47577:Lcom/mojang/serialization/Codec;
named CODEC
Lnet/minecraft/util/Downloader$LogEntry;CODEC:Lcom/mojang/serialization/Codec;
-
-
Constructor Details
-
LogEntry
-
-
Method Details
-
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)
. -
id
Returns the value of theid
record component.- Returns:
- the value of the
id
record component
-
url
Returns the value of theurl
record component.- Returns:
- the value of the
url
record component
-
time
Returns the value of thetime
record component.- Returns:
- the value of the
time
record component
-
hash
Returns the value of thehash
record component.- Returns:
- the value of the
hash
record component
-
errorOrFileInfo
Returns the value of theerrorOrFileInfo
record component.- Returns:
- the value of the
errorOrFileInfo
record component
-