Package net.neoforged.fml.loading
Record Class UniqueModListBuilder.UniqueModListData
java.lang.Object
java.lang.Record
net.neoforged.fml.loading.UniqueModListBuilder.UniqueModListData
- Enclosing class:
UniqueModListBuilder
-
Field Summary
FieldsModifier and TypeFieldDescriptionThe field for thediscardedFilesrecord component.The field for themodFilesrecord component.The field for themodFilesByFirstIdrecord component. -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionReturns the value of thediscardedFilesrecord component.final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.modFiles()Returns the value of themodFilesrecord component.Returns the value of themodFilesByFirstIdrecord component.final StringtoString()Returns a string representation of this record class.
-
Field Details
-
modFiles
The field for themodFilesrecord component. -
discardedFiles
The field for thediscardedFilesrecord component. -
modFilesByFirstId
The field for themodFilesByFirstIdrecord component.
-
-
Constructor Details
-
UniqueModListData
public UniqueModListData(List<ModFile> modFiles, List<ModFile> discardedFiles, Map<String, List<ModFile>> modFilesByFirstId) Creates an instance of aUniqueModListDatarecord class.- Parameters:
modFiles- the value for themodFilesrecord componentdiscardedFiles- the value for thediscardedFilesrecord componentmodFilesByFirstId- the value for themodFilesByFirstIdrecord component
-
-
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). -
modFiles
Returns the value of themodFilesrecord component.- Returns:
- the value of the
modFilesrecord component
-
discardedFiles
Returns the value of thediscardedFilesrecord component.- Returns:
- the value of the
discardedFilesrecord component
-
modFilesByFirstId
Returns the value of themodFilesByFirstIdrecord component.- Returns:
- the value of the
modFilesByFirstIdrecord component
-