public enum AmqpResponseCode extends Enum<AmqpResponseCode>
| Modifier and Type | Method and Description |
|---|---|
static AmqpResponseCode |
fromValue(int value)
Creates an AmqpResponseCode for the provided integer
value. |
int |
getValue()
Gets the integer value of the AmqpResponseCode
|
static AmqpResponseCode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AmqpResponseCode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AmqpResponseCode ACCEPTED
public static final AmqpResponseCode OK
public static final AmqpResponseCode BAD_REQUEST
public static final AmqpResponseCode NOT_FOUND
public static final AmqpResponseCode FORBIDDEN
public static final AmqpResponseCode INTERNAL_SERVER_ERROR
public static final AmqpResponseCode UNAUTHORIZED
public static final AmqpResponseCode CONTINUE
public static final AmqpResponseCode SWITCHING_PROTOCOLS
public static final AmqpResponseCode CREATED
public static final AmqpResponseCode NON_AUTHORITATIVE_INFORMATION
public static final AmqpResponseCode NO_CONTENT
public static final AmqpResponseCode RESET_CONTENT
public static final AmqpResponseCode PARTIAL_CONTENT
public static final AmqpResponseCode AMBIGUOUS
public static final AmqpResponseCode MULTIPLE_CHOICES
public static final AmqpResponseCode MOVED
public static final AmqpResponseCode MOVED_PERMANENTLY
public static final AmqpResponseCode FOUND
public static final AmqpResponseCode REDIRECT
public static final AmqpResponseCode REDIRECT_METHOD
public static final AmqpResponseCode SEE_OTHER
public static final AmqpResponseCode NOT_MODIFIED
public static final AmqpResponseCode USE_PROXY
public static final AmqpResponseCode UNUSED
public static final AmqpResponseCode REDIRECT_KEEP_VERB
public static final AmqpResponseCode TEMPORARY_REDIRECT
public static final AmqpResponseCode PAYMENT_REQUIRED
public static final AmqpResponseCode METHOD_NOT_ALLOWED
public static final AmqpResponseCode NOT_ACCEPTABLE
public static final AmqpResponseCode PROXY_AUTHENTICATION_REQUIRED
public static final AmqpResponseCode REQUEST_TIMEOUT
public static final AmqpResponseCode CONFLICT
public static final AmqpResponseCode GONE
public static final AmqpResponseCode LENGTH_REQUIRED
public static final AmqpResponseCode PRECONDITION_FAILED
public static final AmqpResponseCode REQUEST_ENTITY_TOO_LARGE
public static final AmqpResponseCode REQUEST_URI_TOO_LONG
public static final AmqpResponseCode UNSUPPORTED_MEDIA_TYPE
public static final AmqpResponseCode REQUESTED_RANGE_NOT_SATISFIABLE
public static final AmqpResponseCode EXPECTATION_FAILED
public static final AmqpResponseCode UPGRADE_REQUIRED
public static final AmqpResponseCode NOT_IMPLEMENTED
public static final AmqpResponseCode BAD_GATEWAY
public static final AmqpResponseCode SERVICE_UNAVAILABLE
public static final AmqpResponseCode GATEWAY_TIMEOUT
public static final AmqpResponseCode HTTP_VERSION_NOT_SUPPORTED
public static AmqpResponseCode[] values()
public static AmqpResponseCode valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic static AmqpResponseCode fromValue(int value)
value.value - The integer value representing an error code.null if no matching response code
is found.public int getValue()
Copyright © 2021 Microsoft Corporation. All rights reserved.