Enum Class ExceptionCode

java.lang.Object
java.lang.Enum<ExceptionCode>
de.turnertech.ows.common.ExceptionCode
All Implemented Interfaces:
Serializable, Comparable<ExceptionCode>, Constable

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

    • OPERATION_NOT_SUPPORTED

      public static final ExceptionCode OPERATION_NOT_SUPPORTED
    • NO_APPLICABLE_CODE

      public static final ExceptionCode NO_APPLICABLE_CODE
    • MISSING_PARAMETER_VALUE

      public static final ExceptionCode MISSING_PARAMETER_VALUE
    • INVALID_PARAMETER_VALUE

      public static final ExceptionCode INVALID_PARAMETER_VALUE
    • OPERATION_PARSING_FAILED

      public static final ExceptionCode OPERATION_PARSING_FAILED
    • OPERATION_PROCESSING_FAILED

      public static final ExceptionCode OPERATION_PROCESSING_FAILED
  • Method Details

    • values

      public static ExceptionCode[] 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 ExceptionCode 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
    • valueOfIgnoreCase

      public static ExceptionCode valueOfIgnoreCase(String code)
    • toString

      public String toString()
      Overrides:
      toString in class Enum<ExceptionCode>