Enum Class PQuery.PQueryStatus
java.lang.Object
java.lang.Enum<PQuery.PQueryStatus>
tools.refinery.interpreter.matchers.psystem.queries.PQuery.PQueryStatus
- All Implemented Interfaces:
Serializable
,Comparable<PQuery.PQueryStatus>
,Constable
- Enclosing interface:
PQuery
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionThe query definition was not successfully initialized because of an errorMarks that the query definition is being initializedThe query definition was successfully initializedMarks that the query definition is not initializedThe query definition was initialized, but some issues were present -
Method Summary
Modifier and TypeMethodDescriptionstatic PQuery.PQueryStatus
Returns the enum constant of this class with the specified name.static PQuery.PQueryStatus[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
UNINITIALIZED
Marks that the query definition is not initialized -
INITIALIZING
Marks that the query definition is being initialized- Since:
- 1.4
-
OK
The query definition was successfully initialized -
WARNING
The query definition was initialized, but some issues were present -
ERROR
The query definition was not successfully initialized because of an error
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum class has no constant with the specified nameNullPointerException
- if the argument is null
-