public enum TestClassScanner extends Enum<TestClassScanner>
| Enum Constant and Description |
|---|
GET |
| Modifier and Type | Method and Description |
|---|---|
<T extends Annotation> |
findTestClassAnnotatedBy(Class<T> annotation) |
static TestClassScanner |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TestClassScanner[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TestClassScanner GET
public static TestClassScanner[] values()
for (TestClassScanner c : TestClassScanner.values()) System.out.println(c);
public static TestClassScanner 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 <T extends Annotation> List<org.jboss.arquillian.test.spi.TestClass> findTestClassAnnotatedBy(Class<T> annotation)
Copyright © 2016. All rights reserved.