public static enum DataForm.Type extends Enum<DataForm.Type>
| Enum Constant and Description |
|---|
cancel
The forms-submitting entity has cancelled submission of data to the forms-processing
entity.
|
form
The forms-processing entity is asking the forms-submitting entity to complete a form.
|
result
The forms-processing entity is returning data (e.g., search results) to the
forms-submitting entity, or the data is a generic data set.
|
submit
The forms-submitting entity is submitting data to the forms-processing entity.
|
| Modifier and Type | Method and Description |
|---|---|
static DataForm.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DataForm.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DataForm.Type form
public static final DataForm.Type submit
public static final DataForm.Type cancel
public static final DataForm.Type result
public static DataForm.Type[] values()
for (DataForm.Type c : DataForm.Type.values()) System.out.println(c);
public static DataForm.Type 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 © 2009–2017 Ignite Realtime. All rights reserved.