Enum OperationContext.DisplayLocation
- java.lang.Object
-
- java.lang.Enum<OperationContext.DisplayLocation>
-
- org.opennms.features.topology.api.OperationContext.DisplayLocation
-
- All Implemented Interfaces:
Serializable
,Comparable<OperationContext.DisplayLocation>
- Enclosing interface:
- OperationContext
public static enum OperationContext.DisplayLocation extends Enum<OperationContext.DisplayLocation>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CONTEXTMENU
MENUBAR
SEARCH
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method 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.
-
-
-
Enum Constant Detail
-
MENUBAR
public static final OperationContext.DisplayLocation MENUBAR
-
CONTEXTMENU
public static final OperationContext.DisplayLocation CONTEXTMENU
-
SEARCH
public static final OperationContext.DisplayLocation SEARCH
-
-
Method Detail
-
values
public static OperationContext.DisplayLocation[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (OperationContext.DisplayLocation c : OperationContext.DisplayLocation.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static OperationContext.DisplayLocation valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
-