public enum ContextMenuOwner extends Enum<ContextMenuOwner>
PredefinedContextMenuCommand
Enum Constant and Description |
---|
EDITING_CELL
The cell editing context menu
|
GRID
The grid editing context menu
|
TABS_PANEL
The context menu of the tab panel containing CRUD operations for tabs
|
Modifier and Type | Method and Description |
---|---|
static ContextMenuOwner |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ContextMenuOwner[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ContextMenuOwner GRID
public static final ContextMenuOwner EDITING_CELL
public static final ContextMenuOwner TABS_PANEL
public static ContextMenuOwner[] values()
for (ContextMenuOwner c : ContextMenuOwner.values()) System.out.println(c);
public static ContextMenuOwner 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 © 2024. All rights reserved.