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