public static enum OperationContext.DisplayLocation extends Enum<OperationContext.DisplayLocation>
Enum Constant and Description |
---|
CONTEXTMENU |
MENUBAR |
SEARCH |
Modifier and Type | Method and Description |
---|---|
static OperationContext.DisplayLocation |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static OperationContext.DisplayLocation[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final OperationContext.DisplayLocation MENUBAR
public static final OperationContext.DisplayLocation CONTEXTMENU
public static final OperationContext.DisplayLocation SEARCH
public static OperationContext.DisplayLocation[] values()
for (OperationContext.DisplayLocation c : OperationContext.DisplayLocation.values()) System.out.println(c);
public static OperationContext.DisplayLocation 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 © 2021. All rights reserved.