Package net.minecraft.server.packs
Record Class DownloadCacheCleaner.PathAndPriority
java.lang.Object
java.lang.Record
net.minecraft.server.packs.DownloadCacheCleaner.PathAndPriority
- Enclosing class:
- DownloadCacheCleaner
- 
Field SummaryFieldsModifier and TypeFieldDescriptionstatic final Comparator<DownloadCacheCleaner.PathAndPriority>private final PathThe field for thepathrecord component.private final intThe field for theremovalPriorityrecord component.
- 
Constructor SummaryConstructorsConstructorDescriptionPathAndPriority(Path path, int removalPriority) Creates an instance of aPathAndPriorityrecord class.
- 
Method SummaryModifier and TypeMethodDescriptionfinal booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.path()Returns the value of thepathrecord component.intReturns the value of theremovalPriorityrecord component.final StringtoString()Returns a string representation of this record class.
- 
Field Details- 
pathThe field for thepathrecord component.
- 
removalPriorityprivate final int removalPriorityThe field for theremovalPriorityrecord component.
- 
HIGHEST_PRIORITY_FIRST
 
- 
- 
Constructor Details- 
PathAndPriorityPathAndPriority(Path path, int removalPriority) Creates an instance of aPathAndPriorityrecord class.- Parameters:
- path- the value for the- pathrecord component
- removalPriority- the value for the- removalPriorityrecord component
 
 
- 
- 
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. Reference components are compared withObjects::equals(Object,Object); primitive components are compared with '=='.
- 
pathReturns the value of thepathrecord component.- Returns:
- the value of the pathrecord component
 
- 
removalPrioritypublic int removalPriority()Returns the value of theremovalPriorityrecord component.- Returns:
- the value of the removalPriorityrecord component
 
 
-