Enum Category

java.lang.Object
java.lang.Enum<Category>
org.graffiti.plugin.algorithm.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
  • Enum Constant Details

    • HIDDEN

      public static final Category HIDDEN
    • GRAPH

      public static final Category GRAPH
    • EDGE

      public static final Category EDGE
    • NODE

      public static final Category NODE
    • CLUSTER

      public static final Category CLUSTER
    • COMPUTATION

      public static final Category COMPUTATION
    • ANALYSIS

      public static final Category ANALYSIS
    • DATA

      public static final Category DATA
    • ANNOTATION

      public static final Category ANNOTATION
    • MAPPING

      public static final Category MAPPING
    • LAYOUT

      public static final Category LAYOUT
    • VISUAL

      public static final Category VISUAL
    • CHART

      public static final Category CHART
    • UI

      public static final Category UI
    • SELECTION

      public static final Category SELECTION
    • IMAGING

      public static final Category IMAGING
    • COMMUNICATION

      public static final Category COMMUNICATION
    • STATISTICS

      public static final Category STATISTICS
    • IMPORT

      public static final Category IMPORT
    • EXPORT

      public static final Category EXPORT
    • ENRICHMENT

      public static final Category ENRICHMENT
    • HIERARCHY

      public static final Category HIERARCHY
  • Method Details

    • values

      public static Category[] 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

      public static Category valueOf​(String name)
      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 name
      NullPointerException - if the argument is null
    • getDescription

      public String getDescription()
    • toString

      public String toString()
      Overrides:
      toString in class Enum<Category>