public static enum UnitTestData.Type extends Enum<UnitTestData.Type>
| Enum Constant and Description |
|---|
SQL_FILES |
SQL_STATEMENTS |
| Modifier and Type | Method and Description |
|---|---|
static UnitTestData.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static UnitTestData.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final UnitTestData.Type SQL_STATEMENTS
public static final UnitTestData.Type SQL_FILES
public static UnitTestData.Type[] values()
for (UnitTestData.Type c : UnitTestData.Type.values()) System.out.println(c);
public static UnitTestData.Type 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 nullCopyright © 2005–2018 The Kuali Foundation. All rights reserved.