public enum FlakyTestRunner extends Enum<FlakyTestRunner>
Modifier and Type | Class and Description |
---|---|
static interface |
FlakyTestRunner.RunnableThrows<T extends Throwable> |
Modifier and Type | Method and Description |
---|---|
static <T extends Throwable> |
run(boolean flakyOnThisArch,
FlakyTestRunner.RunnableThrows<T> rt) |
static <T extends Throwable> |
run(FlakyTestRunner.RunnableThrows<T> rt) |
static FlakyTestRunner |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FlakyTestRunner[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static FlakyTestRunner[] values()
for (FlakyTestRunner c : FlakyTestRunner.values()) System.out.println(c);
public static FlakyTestRunner valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullpublic static <T extends Throwable> void run(FlakyTestRunner.RunnableThrows<T> rt) throws T extends Throwable
T extends Throwable
public static <T extends Throwable> void run(boolean flakyOnThisArch, FlakyTestRunner.RunnableThrows<T> rt) throws T extends Throwable
T extends Throwable
Copyright © 2020. All rights reserved.