Enum Class VertexType

java.lang.Object
java.lang.Enum<VertexType>
kieker.analysis.architecture.dependency.VertexType
All Implemented Interfaces:
Serializable, Comparable<VertexType>, Constable

public enum VertexType extends Enum<VertexType>
Enumeration representing the different types of vertices in a Kieker dependency graph with their names used in the graphics.
Since:
1.14
Author:
Sören Henning
  • Enum Constant Details

    • ENTRY

      public static final VertexType ENTRY
    • COMPONENT_TYPE

      public static final VertexType COMPONENT_TYPE
    • OPERATION_TYPE

      public static final VertexType OPERATION_TYPE
    • ASSEMBLY_COMPONENT

      public static final VertexType ASSEMBLY_COMPONENT
    • ASSEMBLY_OPERATION

      public static final VertexType ASSEMBLY_OPERATION
    • ASSEMBLY_STORAGE

      public static final VertexType ASSEMBLY_STORAGE
    • DEPLOYMENT_CONTEXT

      public static final VertexType DEPLOYMENT_CONTEXT
    • DEPLOYED_COMPONENT

      public static final VertexType DEPLOYED_COMPONENT
    • DEPLOYED_OPERATION

      public static final VertexType DEPLOYED_OPERATION
    • DEPLOYED_STORAGE

      public static final VertexType DEPLOYED_STORAGE
  • Method Details

    • values

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