Class ModuleDescriptor.Requires

java.lang.Object
java.lang.module.ModuleDescriptor.Requires
All Implemented Interfaces:
Comparable<ModuleDescriptor.Requires>
Enclosing class:
ModuleDescriptor

public static final class ModuleDescriptor.Requires extends Object implements Comparable<ModuleDescriptor.Requires>

A dependence upon a module.

Since:
9
See Also:
  • Nested Class Summary

    Nested Classes
    Modifier and Type
    Class
    Description
    static enum 
    A modifier on a module dependence.
  • Method Summary

    Modifier and Type
    Method
    Description
    Returns the set of the module requires flags.
    int
    Compares this module dependence to another.
    Returns the version of the module if recorded at compile-time.
    boolean
    Tests this module dependence for equality with the given object.
    int
    Computes a hash code for this module dependence.
    Returns the set of modifiers.
    Return the module name.
    Returns the string with the possibly-unparseable version of the module if recorded at compile-time.
    Returns a string describing this module dependence.

    Methods declared in class Object

    clone, finalize, getClass, notify, notifyAll, wait, wait, wait
    Modifier and Type
    Method
    Description
    protected Object
    Creates and returns a copy of this object.
    protected void
    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<?>
    Returns the runtime class of this Object.
    final void
    Wakes up a single thread that is waiting on this object's monitor.
    final void
    Wakes up all threads that are waiting on this object's monitor.
    final void
    Causes the current thread to wait until it is awakened, typically by being notified or interrupted.
    final void
    wait(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 void
    wait(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

    • modifiers

      Returns the set of modifiers.
      Returns:
      A possibly-empty unmodifiable set of modifiers
    • accessFlags

      public Set<AccessFlag> accessFlags()
      Returns the set of the module requires flags.
      Returns:
      A possibly-empty unmodifiable set of requires flags
      See Java Virtual Machine Specification:
      4.7.25 The Module Attribute
      Since:
      20
      See Also:
    • name

      public String name()
      Return the module name.
      Returns:
      The module name
    • compiledVersion

      public Optional<ModuleDescriptor.Version> compiledVersion()
      Returns the version of the module if recorded at compile-time.
      Returns:
      The version of the module if recorded at compile-time, or an empty Optional if no version was recorded or the version string recorded is unparseable
    • rawCompiledVersion

      public Optional<String> rawCompiledVersion()
      Returns the string with the possibly-unparseable version of the module if recorded at compile-time.
      Returns:
      The string containing the version of the module if recorded at compile-time, or an empty Optional if no version was recorded
      See Also:
    • compareTo

      public int compareTo(ModuleDescriptor.Requires that)
      Compares this module dependence to another.

      Two Requires objects are compared by comparing their module names lexicographically. Where the module names are equal then the sets of modifiers are compared in the same way that module modifiers are compared (see ModuleDescriptor.compareTo). Where the module names are equal and the set of modifiers are equal then the version of the modules recorded at compile-time are compared. When comparing the versions recorded at compile-time then a dependence that has a recorded version is considered to succeed a dependence that does not have a recorded version. If both recorded versions are unparseable then the raw version strings are compared lexicographically.

      Specified by:
      compareTo in interface Comparable<ModuleDescriptor.Requires>
      Parameters:
      that - The module dependence to compare
      Returns:
      A negative integer, zero, or a positive integer if this module dependence is less than, equal to, or greater than the given module dependence
    • equals

      public boolean equals(Object ob)
      Tests this module dependence for equality with the given object.

      If the given object is not a Requires then this method returns false. Two module dependence objects are equal if the module names are equal, set of modifiers are equal, and the compiled version of both modules is equal or not recorded for both modules.

      This method satisfies the general contract of the Object.equals method.

      Overrides:
      equals in class Object
      Parameters:
      ob - the object to which this object is to be compared
      Returns:
      true if, and only if, the given object is a module dependence that is equal to this module dependence
      See Also:
    • hashCode

      public int hashCode()
      Computes a hash code for this module dependence.

      The hash code is based upon the module name, modifiers, and the module version if recorded at compile time. It satisfies the general contract of the Object.hashCode method.

      Overrides:
      hashCode in class Object
      Returns:
      The hash-code value for this module dependence
      See Also:
    • toString

      public String toString()
      Returns a string describing this module dependence.
      Overrides:
      toString in class Object
      Returns:
      A string describing this module dependence