Enum NotPerformedError

    • Enum Constant Detail

      • ALREADY_PROCESSING_REQUEST

        public static final NotPerformedError ALREADY_PROCESSING_REQUEST
      • UNRECOGNIZED_REQUEST_TYPE

        public static final NotPerformedError UNRECOGNIZED_REQUEST_TYPE
      • REQUEST_SCHEDULED_FOR_PROCESSING

        public static final NotPerformedError REQUEST_SCHEDULED_FOR_PROCESSING
      • REQ_NO_SUCH_RESOURCE_CLASS

        public static final NotPerformedError REQ_NO_SUCH_RESOURCE_CLASS
      • REQ_NO_RESOURCES_ALLOTED_IN_RESOURCE_CLASS

        public static final NotPerformedError REQ_NO_RESOURCES_ALLOTED_IN_RESOURCE_CLASS
      • REQ_BADLY_FORMED_CERTIFICATE_REQUEST

        public static final NotPerformedError REQ_BADLY_FORMED_CERTIFICATE_REQUEST
      • REQ_ALREADY_USED_KEY_IN_REQUEST

        public static final NotPerformedError REQ_ALREADY_USED_KEY_IN_REQUEST
      • REV_NO_SUCH_RESOURCE_CLASS

        public static final NotPerformedError REV_NO_SUCH_RESOURCE_CLASS
    • Method Detail

      • values

        public static NotPerformedError[] values()
        Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
        for (NotPerformedError c : NotPerformedError.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static NotPerformedError valueOf​(String name)
        Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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 type has no constant with the specified name
        NullPointerException - if the argument is null
      • getErrorCode

        public int getErrorCode()