- java.lang.Object
-
- java.lang.Enum<CleanupMode>
-
- org.junit.jupiter.api.io.CleanupMode
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<CleanupMode>
@API(status=EXPERIMENTAL, since="5.9") public enum CleanupMode extends java.lang.Enum<CleanupMode>
Enumeration of cleanup modes for@TempDir
.When a test with a temporary directory completes, it might be useful in some cases to be able to view the contents of the temporary directory used by the test.
CleanupMode
allows you to control how aTempDir
is cleaned up.- Since:
- 5.9
- See Also:
TempDir
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ALWAYS
Always clean up a temporary directory after the test has completed.DEFAULT
Use the default cleanup mode.NEVER
Never clean up a temporary directory after the test has completed.ON_SUCCESS
Only clean up a temporary directory if the test completed successfully.
-
Constructor Summary
Constructors Modifier Constructor Description private
CleanupMode()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static CleanupMode
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static CleanupMode[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
DEFAULT
public static final CleanupMode DEFAULT
Use the default cleanup mode.
-
ALWAYS
public static final CleanupMode ALWAYS
Always clean up a temporary directory after the test has completed.
-
ON_SUCCESS
public static final CleanupMode ON_SUCCESS
Only clean up a temporary directory if the test completed successfully.
-
NEVER
public static final CleanupMode NEVER
Never clean up a temporary directory after the test has completed.
-
-
Method Detail
-
values
public static CleanupMode[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (CleanupMode c : CleanupMode.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static CleanupMode valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
-