public enum FormModes extends Enum<FormModes>
| Enum Constant and Description |
|---|
ALL |
DETAILS |
RESULTS |
SEARCH |
UPDATE |
| Modifier and Type | Method and Description |
|---|---|
static FormModes |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FormModes[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FormModes RESULTS
public static final FormModes DETAILS
public static final FormModes UPDATE
public static final FormModes SEARCH
public static final FormModes ALL
public static FormModes[] values()
for (FormModes c : FormModes.values()) System.out.println(c);
public static FormModes 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.