|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||
java.lang.Objectjava.lang.Enum<EditTypeEnum>
org.eclipse.nebula.widgets.nattable.edit.EditTypeEnum
public enum EditTypeEnum
Enumeration type for specifying how a value should be processed that was entered to an editor by dialog.
| Enum Constant Summary | |
|---|---|
ADJUST
Use the value entered into the editor to adjust the value that is currently set in the data model. |
|
DECREASE
Use the value entered into the editor to decrease the value that is currently set in the data model. |
|
INCREASE
Use the value entered into the editor to increase the value that is currently set in the data model. |
|
SET
Use the value entered into the editor without any further transformation. |
|
| Method Summary | |
|---|---|
static EditTypeEnum |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static EditTypeEnum[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
| Methods inherited from class java.lang.Enum |
|---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
| Methods inherited from class java.lang.Object |
|---|
getClass, notify, notifyAll, wait, wait, wait |
| Enum Constant Detail |
|---|
public static final EditTypeEnum SET
public static final EditTypeEnum INCREASE
public static final EditTypeEnum DECREASE
public static final EditTypeEnum ADJUST
| Method Detail |
|---|
public static EditTypeEnum[] values()
for (EditTypeEnum c : EditTypeEnum.values()) System.out.println(c);
public static EditTypeEnum valueOf(String name)
name - the name of the enum constant to be returned.
IllegalArgumentException - if this enum type has no constant
with the specified name
NullPointerException - if the argument is null
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||