|
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<DataCategory>
org.cytoscape.io.DataCategory
public enum DataCategory
An enum that captures the types of data the IO package can read and write.
Enum Constant Summary | |
---|---|
IMAGE
Data to be import/export is Image |
|
NETWORK
Data to be import/export is NETWORK |
|
PROPERTIES
Data to be import/export is Properties |
|
SCRIPT
Data to be imported is Script file |
|
SESSION
Data to be import/export is CySession |
|
TABLE
Data to be import/export is Table |
|
UNSPECIFIED
Data to be import/export is not specified (unknown) |
|
VIZMAP
Data to be import/export is VizMap |
Method Summary | |
---|---|
static DataCategory |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static DataCategory[] |
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 DataCategory NETWORK
public static final DataCategory TABLE
public static final DataCategory IMAGE
public static final DataCategory PROPERTIES
public static final DataCategory SESSION
public static final DataCategory VIZMAP
public static final DataCategory SCRIPT
public static final DataCategory UNSPECIFIED
Method Detail |
---|
public static DataCategory[] values()
for (DataCategory c : DataCategory.values()) System.out.println(c);
public static DataCategory 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 |