public enum UndoConfirmationPolicy extends java.lang.Enum<UndoConfirmationPolicy>
Enum Constant and Description |
---|
DEFAULT |
DO_NOT_REQUEST_CONFIRMATION |
REQUEST_CONFIRMATION |
Modifier and Type | Method and Description |
---|---|
static UndoConfirmationPolicy |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static UndoConfirmationPolicy[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final UndoConfirmationPolicy DEFAULT
public static final UndoConfirmationPolicy REQUEST_CONFIRMATION
public static final UndoConfirmationPolicy DO_NOT_REQUEST_CONFIRMATION
public static UndoConfirmationPolicy[] values()
for (UndoConfirmationPolicy c : UndoConfirmationPolicy.values()) System.out.println(c);
public static UndoConfirmationPolicy valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null