Class ResolvedModule
java.lang.Object
java.lang.module.ResolvedModule
A module in a graph of resolved modules.
ResolvedModule defines the configuration
method to get the configuration that the resolved module is in. It defines
the reference method to get the reference to the
module's content.
- Since:
- 9
- See Also:
-
Method Summary
Modifier and TypeMethodDescriptionReturns the configuration that this resolved module is in.booleanTests this resolved module for equality with the given object.inthashCode()Computes a hash code for this resolved module.name()Returns the module name.reads()Returns the set of resolved modules that this resolved module reads.Returns the reference to the module's content.toString()Returns a string describing this resolved module.Methods declared in class Object
clone, finalize, getClass, notify, notifyAll, wait, wait, waitModifier and TypeMethodDescriptionprotected Objectclone()Creates and returns a copy of this object.protected voidfinalize()Deprecated, for removal: This API element is subject to removal in a future version.Finalization is deprecated and subject to removal in a future release.final Class<?> getClass()Returns the runtime class of thisObject.final voidnotify()Wakes up a single thread that is waiting on this object's monitor.final voidWakes up all threads that are waiting on this object's monitor.final voidwait()Causes the current thread to wait until it is awakened, typically by being notified or interrupted.final voidwait(long timeoutMillis) Causes the current thread to wait until it is awakened, typically by being notified or interrupted, or until a certain amount of real time has elapsed.final voidwait(long timeoutMillis, int nanos) Causes the current thread to wait until it is awakened, typically by being notified or interrupted, or until a certain amount of real time has elapsed.
-
Method Details
-
configuration
Returns the configuration that this resolved module is in.- Returns:
- The configuration that this resolved module is in
-
reference
Returns the reference to the module's content.- Returns:
- The reference to the module's content
-
name
Returns the module name. This convenience method is the equivalent to invoking:reference().descriptor().name()- Returns:
- The module name
-
reads
Returns the set of resolved modules that this resolved module reads. The readability relation is reflexive (every module reads itself). The set of resolved modules returned by this method does not include itself.- Returns:
- A possibly-empty unmodifiable set of resolved modules that this resolved module reads
-
hashCode
public int hashCode()Computes a hash code for this resolved module.The hash code is based upon the components of the resolved module and satisfies the general contract of the
Object.hashCodemethod. -
equals
Tests this resolved module for equality with the given object.If the given object is not a
ResolvedModulethen this method returnsfalse. TwoResolvedModuleobjects are equal if they are in the same configuration and have equal references to the module content.This method satisfies the general contract of the
Object.equalsmethod. -
toString
-