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

public static enum PQuery.PQueryStatus extends Enum<PQuery.PQueryStatus>
  • Enum Constant Details

    • UNINITIALIZED

      public static final PQuery.PQueryStatus UNINITIALIZED
      Marks that the query definition is not initialized
    • INITIALIZING

      public static final PQuery.PQueryStatus INITIALIZING
      Marks that the query definition is being initialized
      Since:
      1.4
    • OK

      public static final PQuery.PQueryStatus OK
      The query definition was successfully initialized
    • WARNING

      public static final PQuery.PQueryStatus WARNING
      The query definition was initialized, but some issues were present
    • ERROR

      public static final PQuery.PQueryStatus ERROR
      The query definition was not successfully initialized because of an error
  • Method Details

    • values

      public static PQuery.PQueryStatus[] 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

      public static PQuery.PQueryStatus valueOf(String name)
      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 name
      NullPointerException - if the argument is null