Enum Class DotSubgraphAttribute

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

public enum DotSubgraphAttribute extends Enum<DotSubgraphAttribute>
A enumeration of possible attributes for subgraphs 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
  • Method Details

    • values

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