public enum TestQueryType extends Enum<TestQueryType>
| Enum Constant and Description |
|---|
DATA_FOUND |
NO_DATA_FOUND |
NONE |
| Modifier and Type | Method and Description |
|---|---|
static TestQueryType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TestQueryType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TestQueryType NONE
public static final TestQueryType DATA_FOUND
public static final TestQueryType NO_DATA_FOUND
public static TestQueryType[] values()
for (TestQueryType c : TestQueryType.values()) System.out.println(c);
public static TestQueryType 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 © 2020. All rights reserved.