Package net.minecraft.util.logging
Record Class LogFileCompressor.Compressed
java.lang.Object
java.lang.Record
net.minecraft.util.logging.LogFileCompressor.Compressed
- Record Components:
- path-
- id-
- All Implemented Interfaces:
- LogFileCompressor.LogFile
- Enclosing class:
- LogFileCompressor
public static record LogFileCompressor.Compressed(Path path, LogFileCompressor.LogId id)
extends Record
implements LogFileCompressor.LogFile
- Mappings:
- Namespace - Name - named - net/minecraft/util/logging/LogFileCompressor$Compressed- intermediary - net/minecraft/class_7929$class_7930- official - bnl$a- named - path- intermediary - comp_1156- official - a- named - id- intermediary - comp_1157- official - b
- 
Field SummaryFields
- 
Constructor SummaryConstructors
- 
Method SummaryModifier and TypeMethodDescriptioncompress()final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.id()Returns the value of theidrecord component.path()Returns the value of thepathrecord component.final StringtoString()Returns a string representation of this record class.
- 
Field Details
- 
Constructor Details- 
Compressed
 
- 
- 
Method Details- 
getReader- Specified by:
- getReaderin interface- LogFileCompressor.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- Lbnl$b;a()Ljava/io/Reader;
 
- 
compress- Specified by:
- compressin interface- LogFileCompressor.LogFile
- 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- Lbnl$b;b()Lbnl$a;
 
- 
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).
- 
pathReturns the value of thepathrecord component.- Specified by:
- pathin interface- LogFileCompressor.LogFile
- Returns:
- the value of the pathrecord component
 
- 
idReturns the value of theidrecord component.- Specified by:
- idin interface- LogFileCompressor.LogFile
- Returns:
- the value of the idrecord component
 
 
-