public enum CoapResponseCode extends Enum<CoapResponseCode>
| Modifier and Type | Method and Description |
|---|---|
static CoapResponseCode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CoapResponseCode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CoapResponseCode CONTENT
public static final CoapResponseCode CREATED
public static final CoapResponseCode CHANGED
public static final CoapResponseCode DELETED
public static final CoapResponseCode VALID
public static final CoapResponseCode CONTINUE
public static final CoapResponseCode BAD_REQUEST
public static final CoapResponseCode UNAUTHORIZED
public static final CoapResponseCode BAD_OPTION
public static final CoapResponseCode FORBIDDEN
public static final CoapResponseCode NOT_FOUND
public static final CoapResponseCode METHOD_NOT_ALLOWED
public static final CoapResponseCode NOT_ACCEPTABLE
public static final CoapResponseCode REQUEST_ENTITY_INCOMPLETE
public static final CoapResponseCode CONFLICT
public static final CoapResponseCode PRECONDITION_FAILED
public static final CoapResponseCode REQUEST_ENTITY_TOO_LARGE
public static final CoapResponseCode UNSUPPORTED_CONTENT_FORMAT
public static final CoapResponseCode UNPROCESSABLE_ENTITY
public static final CoapResponseCode INTERNAL_SERVER_ERROR
public static final CoapResponseCode NOT_IMPLEMENTED
public static final CoapResponseCode BAD_GATEWAY
public static final CoapResponseCode SERVICE_UNAVAILABLE
public static final CoapResponseCode GATEWAY_TIMEOUT
public static final CoapResponseCode PROXY_NOT_SUPPORTED
public static final CoapResponseCode TOO_MANY_REQUESTS
public static CoapResponseCode[] values()
for (CoapResponseCode c : CoapResponseCode.values()) System.out.println(c);
public static CoapResponseCode 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 nullCopyright © 2019–2025 Teslanet.nl. All rights reserved.