fbench.graph.popup
Enum ContextMenu.SupportedElement

java.lang.Object
  extended by java.lang.Enum<ContextMenu.SupportedElement>
      extended by fbench.graph.popup.ContextMenu.SupportedElement
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<ContextMenu.SupportedElement>
Enclosing class:
ContextMenu

public static enum ContextMenu.SupportedElement
extends java.lang.Enum<ContextMenu.SupportedElement>


Enum Constant Summary
Algorithm
           
Connection
           
Device
           
DRType
           
ECC
           
ECState
           
ECTransition
           
Event
           
FB
           
FBNetwork
           
FBType
          DRType represents DeviceType and ResourceType
HCECC
           
Parameter
           
System
           
VarDeclaration
           
 
Method Summary
static ContextMenu.SupportedElement valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static ContextMenu.SupportedElement[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

FBType

public static final ContextMenu.SupportedElement FBType
DRType represents DeviceType and ResourceType


DRType

public static final ContextMenu.SupportedElement DRType

Event

public static final ContextMenu.SupportedElement Event

VarDeclaration

public static final ContextMenu.SupportedElement VarDeclaration

FBNetwork

public static final ContextMenu.SupportedElement FBNetwork

FB

public static final ContextMenu.SupportedElement FB

Connection

public static final ContextMenu.SupportedElement Connection

ECC

public static final ContextMenu.SupportedElement ECC

HCECC

public static final ContextMenu.SupportedElement HCECC

ECState

public static final ContextMenu.SupportedElement ECState

ECTransition

public static final ContextMenu.SupportedElement ECTransition

Algorithm

public static final ContextMenu.SupportedElement Algorithm

System

public static final ContextMenu.SupportedElement System

Device

public static final ContextMenu.SupportedElement Device

Parameter

public static final ContextMenu.SupportedElement Parameter
Method Detail

values

public static ContextMenu.SupportedElement[] 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 (ContextMenu.SupportedElement c : ContextMenu.SupportedElement.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static ContextMenu.SupportedElement valueOf(java.lang.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:
java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
java.lang.NullPointerException - if the argument is null