public enum DataCategory extends Enum<DataCategory>
Module: io-api
To use this in your app, include the following dependency in your POM:
<dependency> <groupId>org.cytoscape</groupId> <artifactId>io-api</artifactId> </dependency>
Enum Constant and Description |
---|
ARCHIVE
Data to be exported is an archive file
|
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
|
Modifier and Type | Method and Description |
---|---|
String |
getDisplayName() |
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.
|
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 ARCHIVE
public static final DataCategory UNSPECIFIED
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 nameNullPointerException
- if the argument is nullpublic String getDisplayName()
Copyright 2011-2015 Cytoscape Consortium. All rights reserved.