public enum DelKeyAction extends java.lang.Enum<DelKeyAction>
Enum Constant and Description |
---|
DeleteActiveItem
Indicates that only the ActiveItem is deleted.
|
DeleteSelectedItems
Indicates that all selected items are deleted.
|
None
Indicates that nothing happens.
|
Modifier and Type | Method and Description |
---|---|
static DelKeyAction |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static DelKeyAction[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DelKeyAction None
public static final DelKeyAction DeleteActiveItem
public static final DelKeyAction DeleteSelectedItems
public static DelKeyAction[] values()
for (DelKeyAction c : DelKeyAction.values()) System.out.println(c);
public static DelKeyAction 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