Record Class ModDiscoverer.Result
java.lang.Object
java.lang.Record
net.neoforged.fml.loading.moddiscovery.ModDiscoverer.Result
- Enclosing class:
ModDiscoverer
public static record ModDiscoverer.Result(List<ModFile> modFiles, List<ModLoadingIssue> discoveryIssues)
extends Record
-
Field Summary
FieldsModifier and TypeFieldDescriptionprivate final List<ModLoadingIssue> The field for thediscoveryIssuesrecord component.The field for themodFilesrecord component. -
Constructor Summary
ConstructorsConstructorDescriptionResult(List<ModFile> modFiles, List<ModLoadingIssue> discoveryIssues) Creates an instance of aResultrecord class. -
Method Summary
Modifier and TypeMethodDescriptionReturns the value of thediscoveryIssuesrecord 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.final StringtoString()Returns a string representation of this record class.
-
Field Details
-
modFiles
-
discoveryIssues
The field for thediscoveryIssuesrecord component.
-
-
Constructor Details
-
Result
Creates an instance of aResultrecord class.- Parameters:
modFiles- the value for themodFilesrecord componentdiscoveryIssues- the value for thediscoveryIssuesrecord component
-
-
Method Details
-
toString
-
hashCode
-
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
-
discoveryIssues
Returns the value of thediscoveryIssuesrecord component.- Returns:
- the value of the
discoveryIssuesrecord component
-