Enum Class DotNodeAttribute

java.lang.Object
java.lang.Enum<DotNodeAttribute>
kieker.analysis.generic.sink.graph.dot.attributes.DotNodeAttribute
All Implemented Interfaces:
Serializable, Comparable<DotNodeAttribute>, Constable

public enum DotNodeAttribute extends Enum<DotNodeAttribute>
A enumeration of possible attributes for nodes in dot graphs. Currently only the attributes we are using are implemented, but the enumeration can be extended at will. The whole set of attributes including further documentation can be found here: {@link http://www.graphviz.org/doc/info/attrs.html}
Since:
1.14
Author:
Sören Henning
  • Enum Constant Details

  • Method Details

    • values

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

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

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