Enum Class ErrorCodes

java.lang.Object
java.lang.Enum<ErrorCodes>
org.chenile.query.service.error.ErrorCodes
All Implemented Interfaces:
Serializable, Comparable<ErrorCodes>, Constable

public enum ErrorCodes extends Enum<ErrorCodes>
  • Enum Constant Details

    • COUNT_QUERY_DOES_NOT_RETURN_INT

      public static final ErrorCodes COUNT_QUERY_DOES_NOT_RETURN_INT
    • CANNOT_EXECUTE_QUERY

      public static final ErrorCodes CANNOT_EXECUTE_QUERY
    • CANNOT_EXECUTE_COUNT_QUERY

      public static final ErrorCodes CANNOT_EXECUTE_COUNT_QUERY
  • Field Details

    • subError

      private final int subError
  • Constructor Details

    • ErrorCodes

      private ErrorCodes(int subError)
  • Method Details

    • values

      public static ErrorCodes[] 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 ErrorCodes 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
    • getSubError

      public int getSubError()