org.encog.bot.browse.range
public static enum Form.Method extends Enum<Form.Method>
Enum Constant and Description |
---|
GET
THis form is to sent using a GET.
|
POST
This form is to be POSTed.
|
Modifier and Type | Method and Description |
---|---|
static Form.Method |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Form.Method[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Form.Method POST
public static final Form.Method GET
public static Form.Method[] values()
for (Form.Method c : Form.Method.values()) System.out.println(c);
public static Form.Method 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 © 2014. All Rights Reserved.