public static enum PQuery.PQueryStatus extends java.lang.Enum<PQuery.PQueryStatus>
Enum Constant and Description |
---|
ERROR
The query definition was not successfully initialized because of an error
|
OK
The query definition was successfully initialized
|
UNINITIALIZED
Marks that the query definition is not initialized
|
WARNING
The query definition was initialized, but some issues were present
|
Modifier and Type | Method and Description |
---|---|
static PQuery.PQueryStatus |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static PQuery.PQueryStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PQuery.PQueryStatus UNINITIALIZED
public static final PQuery.PQueryStatus OK
public static final PQuery.PQueryStatus WARNING
public static final PQuery.PQueryStatus ERROR
public static PQuery.PQueryStatus[] values()
for (PQuery.PQueryStatus c : PQuery.PQueryStatus.values()) System.out.println(c);
public static PQuery.PQueryStatus valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null