public static enum XEditableBehavior.Reason extends Enum<XEditableBehavior.Reason>
| Enum Constant and Description |
|---|
CANCEL |
MANUAL |
NOCHANGE |
ONBLUR |
SAVE |
| Modifier and Type | Method and Description |
|---|---|
static XEditableBehavior.Reason |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static XEditableBehavior.Reason[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final XEditableBehavior.Reason SAVE
public static final XEditableBehavior.Reason CANCEL
public static final XEditableBehavior.Reason ONBLUR
public static final XEditableBehavior.Reason NOCHANGE
public static final XEditableBehavior.Reason MANUAL
public static XEditableBehavior.Reason[] values()
for (XEditableBehavior.Reason c : XEditableBehavior.Reason.values()) System.out.println(c);
public static XEditableBehavior.Reason 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 © 2011–2014 AgileCoders. All rights reserved.