|
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<CytoPanelName>
org.cytoscape.application.swing.CytoPanelName
public enum CytoPanelName
An enum that describes CytoPanel
s uses compass directions
to describe their location within the application.
Enum Constant Summary | |
---|---|
EAST
The east or right-hand panel. |
|
SOUTH
The south or bottom panel. |
|
SOUTH_WEST
The south-west or bottom left panel. |
|
WEST
The west or left-hand panel. |
Method Summary | |
---|---|
String |
getTitle()
Returns the human readable title used for labeling this CytoPanel. |
static CytoPanelName |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static CytoPanelName[] |
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 CytoPanelName SOUTH
public static final CytoPanelName EAST
public static final CytoPanelName WEST
public static final CytoPanelName SOUTH_WEST
Method Detail |
---|
public static CytoPanelName[] values()
for (CytoPanelName c : CytoPanelName.values()) System.out.println(c);
public static CytoPanelName 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 nullpublic String getTitle()
|
Cytoscape 3.0.0-beta1 API | |||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |