public static enum HttpVerbUriRegexPropertyValue.Verb extends java.lang.Enum<HttpVerbUriRegexPropertyValue.Verb>
Enum Constant and Description |
---|
ANY_VERB |
DELETE |
GET |
HEAD |
OPTIONS |
POST |
PUT |
Modifier and Type | Method and Description |
---|---|
static HttpVerbUriRegexPropertyValue.Verb |
get(java.lang.String verbName) |
java.lang.String |
toString() |
static HttpVerbUriRegexPropertyValue.Verb |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static HttpVerbUriRegexPropertyValue.Verb[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final HttpVerbUriRegexPropertyValue.Verb GET
public static final HttpVerbUriRegexPropertyValue.Verb PUT
public static final HttpVerbUriRegexPropertyValue.Verb POST
public static final HttpVerbUriRegexPropertyValue.Verb DELETE
public static final HttpVerbUriRegexPropertyValue.Verb OPTIONS
public static final HttpVerbUriRegexPropertyValue.Verb HEAD
public static final HttpVerbUriRegexPropertyValue.Verb ANY_VERB
public static HttpVerbUriRegexPropertyValue.Verb[] values()
for (HttpVerbUriRegexPropertyValue.Verb c : HttpVerbUriRegexPropertyValue.Verb.values()) System.out.println(c);
public static HttpVerbUriRegexPropertyValue.Verb valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullpublic java.lang.String toString()
toString
in class java.lang.Enum<HttpVerbUriRegexPropertyValue.Verb>
public static HttpVerbUriRegexPropertyValue.Verb get(java.lang.String verbName)