Enum Class Metadata.Nature

java.lang.Object
java.lang.Enum<Metadata.Nature>
org.eclipse.aether.metadata.Metadata.Nature
All Implemented Interfaces:
Serializable, Comparable<Metadata.Nature>, Constable
Enclosing interface:
Metadata

public static enum Metadata.Nature extends Enum<Metadata.Nature>
The nature of the metadata.
  • Enum Constant Details

    • RELEASE

      public static final Metadata.Nature RELEASE
      The metadata refers to release artifacts only.
    • SNAPSHOT

      public static final Metadata.Nature SNAPSHOT
      The metadata refers to snapshot artifacts only.
    • RELEASE_OR_SNAPSHOT

      public static final Metadata.Nature RELEASE_OR_SNAPSHOT
      The metadata refers to either release or snapshot artifacts.
  • Constructor Details

    • Nature

      private Nature()
  • Method Details

    • values

      public static Metadata.Nature[] values()
      Returns an array containing the constants of this enum class, in the order they are declared.
      Returns:
      an array containing the constants of this enum class, in the order they are declared
    • valueOf

      public static Metadata.Nature valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)
      Parameters:
      name - the name of the enum constant to be returned.
      Returns:
      the enum constant with the specified name
      Throws:
      IllegalArgumentException - if this enum class has no constant with the specified name
      NullPointerException - if the argument is null