Package dev.plex
Record Class PlexLibraryManager.PluginLibraries
java.lang.Object
java.lang.Record
dev.plex.PlexLibraryManager.PluginLibraries
- Enclosing class:
PlexLibraryManager
-
Field Summary
FieldsModifier and TypeFieldDescriptionThe field for thedependenciesrecord component.The field for therepositoriesrecord component. -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionStream<org.eclipse.aether.graph.Dependency> Stream<org.eclipse.aether.repository.RemoteRepository> Returns the value of thedependenciesrecord component.final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.Returns the value of therepositoriesrecord component.final StringtoString()Returns a string representation of this record class.
-
Field Details
-
repositories
The field for therepositoriesrecord component. -
dependencies
The field for thedependenciesrecord component.
-
-
Constructor Details
-
PluginLibraries
Creates an instance of aPluginLibrariesrecord class.- Parameters:
repositories- the value for therepositoriesrecord componentdependencies- the value for thedependenciesrecord component
-
-
Method Details
-
asDependencies
-
asRepositories
-
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). -
repositories
Returns the value of therepositoriesrecord component.- Returns:
- the value of the
repositoriesrecord component
-
dependencies
Returns the value of thedependenciesrecord component.- Returns:
- the value of the
dependenciesrecord component
-