|
Cytoscape 3.0.0-beta1 API | |||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<CytoPanelState>
org.cytoscape.application.swing.CytoPanelState
public enum CytoPanelState
The different display states available for a CytoPanel
.
Enum Constant Summary | |
---|---|
DOCK
The CytoPanel will be open and appear as a nested frame
within the application. |
|
FLOAT
The CytoPanel will be open and appear as a separate frame
independent of the application. |
|
HIDE
The CytoPanel will be hidden and only appear as a menu item. |
Method Summary | |
---|---|
static CytoPanelState |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static CytoPanelState[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final CytoPanelState HIDE
CytoPanel
will be hidden and only appear as a menu item.
public static final CytoPanelState FLOAT
CytoPanel
will be open and appear as a separate frame
independent of the application.
public static final CytoPanelState DOCK
CytoPanel
will be open and appear as a nested frame
within the application.
Method Detail |
---|
public static CytoPanelState[] values()
for (CytoPanelState c : CytoPanelState.values()) System.out.println(c);
public static CytoPanelState valueOf(String name)
name
- the name of the enum constant to be returned.
IllegalArgumentException
- if this enum type has no constant
with the specified name
NullPointerException
- if the argument is null
|
Cytoscape 3.0.0-beta1 API | |||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |