Enum Class ResourceAccessMode

java.lang.Object
java.lang.Enum<ResourceAccessMode>
org.junit.jupiter.api.parallel.ResourceAccessMode
All Implemented Interfaces:
Serializable, Comparable<ResourceAccessMode>, java.lang.constant.Constable

@API(status=STABLE, since="5.10") public enum ResourceAccessMode extends Enum<ResourceAccessMode>
The access mode required by a test class or method for a given resource.
Since:
5.3
See Also:
  • Enum Constant Details

    • READ_WRITE

      public static final ResourceAccessMode READ_WRITE
      Require read and write access to the resource.
    • READ

      public static final ResourceAccessMode READ
      Require only read access to the resource.
  • Method Details

    • values

      public static ResourceAccessMode[] 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 ResourceAccessMode 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