Package org.graffiti.plugin.algorithm
Enum Category
- All Implemented Interfaces:
Serializable
,Comparable<Category>
,java.lang.constant.Constable
public enum Category extends Enum<Category>
An enum containing a set of categories for algorithms These fixed categories
enable possiblities of grouping and searching algorithms
Algorithms can be part of multiple categories
- Author:
- matthiak
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum Constants Enum Constant Description ANALYSIS
ANNOTATION
CHART
CLUSTER
COMMUNICATION
COMPUTATION
DATA
EDGE
ENRICHMENT
EXPORT
GRAPH
HIDDEN
HIERARCHY
IMAGING
IMPORT
LAYOUT
MAPPING
NODE
SEARCH
SELECTION
STATISTICS
UI
VISUAL
-
Method Summary
Modifier and Type Method Description String
getDescription()
String
toString()
static Category
valueOf(String name)
Returns the enum constant of this type with the specified name.static Category[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods inherited from class java.lang.Enum
compareTo, describeConstable, equals, getDeclaringClass, hashCode, name, ordinal, valueOf
-
Enum Constant Details
-
HIDDEN
-
GRAPH
-
EDGE
-
NODE
-
CLUSTER
-
COMPUTATION
-
ANALYSIS
-
DATA
-
ANNOTATION
-
MAPPING
-
LAYOUT
-
VISUAL
-
CHART
-
UI
-
SELECTION
-
SEARCH
-
IMAGING
-
COMMUNICATION
-
STATISTICS
-
IMPORT
-
EXPORT
-
ENRICHMENT
-
HIERARCHY
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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 type has no constant with the specified nameNullPointerException
- if the argument is null
-
getDescription
-
toString
-