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
The field for themodFilesrecord component. -
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
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
-
discoveryIssues
Returns the value of thediscoveryIssuesrecord component.- Returns:
- the value of the
discoveryIssuesrecord component
-