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