public enum CoapRequestCode extends Enum<CoapRequestCode>
| Enum Constant and Description |
|---|
DELETE |
FETCH |
GET |
IPATCH |
PATCH |
POST |
PUT |
| Modifier and Type | Method and Description |
|---|---|
static CoapRequestCode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CoapRequestCode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CoapRequestCode GET
public static final CoapRequestCode POST
public static final CoapRequestCode PUT
public static final CoapRequestCode DELETE
public static final CoapRequestCode FETCH
public static final CoapRequestCode PATCH
public static final CoapRequestCode IPATCH
public static CoapRequestCode[] values()
for (CoapRequestCode c : CoapRequestCode.values()) System.out.println(c);
public static CoapRequestCode 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–2024 Teslanet.nl. All rights reserved.