public enum CytoPanelName extends Enum<CytoPanelName>
CytoPanel
s uses compass directions
to describe their location within the application.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 |
---|
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.
|
Modifier and Type | Method and Description |
---|---|
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.
|
public static final CytoPanelName SOUTH
public static final CytoPanelName EAST
public static final CytoPanelName WEST
public static final CytoPanelName SOUTH_WEST
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 nameNullPointerException
- if the argument is nullpublic String getTitle()
Copyright 2011-2015 Cytoscape Consortium. All rights reserved.