Enum Class FlowKind

java.lang.Object
java.lang.Enum<FlowKind>
pascal.taie.analysis.graph.flowgraph.FlowKind
All Implemented Interfaces:
Serializable, Comparable<FlowKind>, Constable

public enum FlowKind extends Enum<FlowKind>
  • Enum Constant Details

    • LOCAL_ASSIGN

      public static final FlowKind LOCAL_ASSIGN
    • CAST

      public static final FlowKind CAST
    • INSTANCE_LOAD

      public static final FlowKind INSTANCE_LOAD
    • INSTANCE_STORE

      public static final FlowKind INSTANCE_STORE
    • ARRAY_LOAD

      public static final FlowKind ARRAY_LOAD
    • ARRAY_STORE

      public static final FlowKind ARRAY_STORE
    • STATIC_LOAD

      public static final FlowKind STATIC_LOAD
    • STATIC_STORE

      public static final FlowKind STATIC_STORE
    • THIS_PASSING

      public static final FlowKind THIS_PASSING
    • PARAMETER_PASSING

      public static final FlowKind PARAMETER_PASSING
    • RETURN

      public static final FlowKind RETURN
    • OTHER

      public static final FlowKind OTHER
  • Method Details

    • values

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