public enum QueryStatus extends Enum<QueryStatus>
Modifier and Type | Method and Description |
---|---|
static QueryStatus |
fromStatus(String status)
Deprecated.
|
static List<String> |
getQueries() |
String |
getStatus() |
static void |
initStatuses() |
static QueryStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static QueryStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final QueryStatus SUCCESS
public static final QueryStatus FAILED
public static QueryStatus[] values()
for (QueryStatus c : QueryStatus.values()) System.out.println(c);
public static QueryStatus 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 String getStatus()
public static void initStatuses()
public static QueryStatus fromStatus(String status)
query
- Copyright © 2004–2021 The Apache Software Foundation. All rights reserved.