Package org.cytoscape.io
Enum Class DataCategory
- All Implemented Interfaces:
Serializable
,Comparable<DataCategory>
,java.lang.constant.Constable
An enum that captures the types of data the IO package can read and write.
Cytoscape Backwards Compatibility (Enum): This class is an enum therefore can't be extended by users. This means that we may add methods or enum values for minor version updates. Methods or enum values will only be removed for major version updates.
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>
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionData to be exported is an archive fileData to be import/export is ImageData to be import/export is NETWORKData to be import/export is PropertiesData to be imported is Script fileData to be import/export is CySessionData to be import/export is TableData to be import/export is not specified (unknown)Data to be import/export is VizMap -
Method Summary
Modifier and TypeMethodDescriptionstatic DataCategory
Returns the enum constant of this class with the specified name.static DataCategory[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
NETWORK
Data to be import/export is NETWORK -
TABLE
Data to be import/export is Table -
IMAGE
Data to be import/export is Image -
PROPERTIES
Data to be import/export is Properties -
SESSION
Data to be import/export is CySession -
VIZMAP
Data to be import/export is VizMap -
SCRIPT
Data to be imported is Script file -
ARCHIVE
Data to be exported is an archive file -
UNSPECIFIED
Data to be import/export is not specified (unknown)
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum class has no constant with the specified nameNullPointerException
- if the argument is null
-
getDisplayName
-