public enum CytoPanelState extends Enum<CytoPanelState>
CytoPanel.Module: swing-application-api
To use this in your app, include the following dependency in your POM:
<dependency>
<groupId>org.cytoscape</groupId>
<artifactId>swing-application-api</artifactId>
</dependency>| Enum Constant and Description |
|---|
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. |
| Modifier and Type | Method and Description |
|---|---|
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.
|
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.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 nameNullPointerException - if the argument is nullCopyright 2011-2015 Cytoscape Consortium. All rights reserved.