Package net.minecraft.util.logging
Record Class LogFileCompressor.Uncompressed
java.lang.Object
java.lang.Record
net.minecraft.util.logging.LogFileCompressor.Uncompressed
- Record Components:
path
-id
-
- All Implemented Interfaces:
LogFileCompressor.LogFile
- Enclosing class:
LogFileCompressor
public static record LogFileCompressor.Uncompressed(Path path, LogFileCompressor.LogId id)
extends Record
implements LogFileCompressor.LogFile
- Mappings:
Namespace Name named net/minecraft/util/logging/LogFileCompressor$Uncompressed
intermediary net/minecraft/class_7929$class_7934
official bmc$e
named path
intermediary comp_1156
official a
named id
intermediary comp_1157
official b
-
Field Summary
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptioncompress()
final boolean
Indicates whether some other object is "equal to" this one.final int
hashCode()
Returns a hash code value for this object.id()
Returns the value of theid
record component.open()
path()
Returns the value of thepath
record component.final String
toString()
Returns a string representation of this record class.
-
Field Details
-
Constructor Details
-
Uncompressed
-
-
Method Details
-
open
- Throws:
IOException
- Mappings:
Namespace Name Mixin selector named open
Lnet/minecraft/util/logging/LogFileCompressor$Uncompressed;open()Ljava/nio/channels/FileChannel;
intermediary method_47565
Lnet/minecraft/class_7929$class_7934;method_47565()Ljava/nio/channels/FileChannel;
official e
Lbmc$e;e()Ljava/nio/channels/FileChannel;
-
getReader
- Specified by:
getReader
in interfaceLogFileCompressor.LogFile
- Throws:
IOException
- Mappings:
Namespace Name Mixin selector named getReader
Lnet/minecraft/util/logging/LogFileCompressor$LogFile;getReader()Ljava/io/Reader;
intermediary method_47556
Lnet/minecraft/class_7929$class_7931;method_47556()Ljava/io/Reader;
official a
Lbmc$b;a()Ljava/io/Reader;
-
compress
- Specified by:
compress
in interfaceLogFileCompressor.LogFile
- Throws:
IOException
- Mappings:
Namespace Name Mixin selector named compress
Lnet/minecraft/util/logging/LogFileCompressor$LogFile;compress()Lnet/minecraft/util/logging/LogFileCompressor$Compressed;
intermediary method_47557
Lnet/minecraft/class_7929$class_7931;method_47557()Lnet/minecraft/class_7929$class_7930;
official b
Lbmc$b;b()Lbmc$a;
-
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)
. -
path
Returns the value of thepath
record component.- Specified by:
path
in interfaceLogFileCompressor.LogFile
- Returns:
- the value of the
path
record component
-
id
Returns the value of theid
record component.- Specified by:
id
in interfaceLogFileCompressor.LogFile
- Returns:
- the value of the
id
record component
-