Enum NotPerformedError
- java.lang.Object
-
- java.lang.Enum<NotPerformedError>
-
- net.ripe.rpki.commons.provisioning.payload.error.NotPerformedError
-
- All Implemented Interfaces:
Serializable,Comparable<NotPerformedError>
public enum NotPerformedError extends Enum<NotPerformedError>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static NotPerformedErrorgetError(int errorCode)intgetErrorCode()static NotPerformedErrorvalueOf(String name)Returns the enum constant of this type with the specified name.static NotPerformedError[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ALREADY_PROCESSING_REQUEST
public static final NotPerformedError ALREADY_PROCESSING_REQUEST
-
VERSION_NUMBER_ERROR
public static final NotPerformedError VERSION_NUMBER_ERROR
-
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
-
REV_NO_SUCH_KEY
public static final NotPerformedError REV_NO_SUCH_KEY
-
INTERNAL_SERVER_ERROR
public static final NotPerformedError INTERNAL_SERVER_ERROR
-
-
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 nameNullPointerException- if the argument is null
-
getErrorCode
public int getErrorCode()
-
getError
public static NotPerformedError getError(int errorCode)
-
-