Enum Class FlowKind

java.lang.Object
java.lang.Enum<FlowKind>
qilin.pta.toolkits.moon.graph.FlowKind
All Implemented Interfaces:
Serializable, Comparable<FlowKind>, Constable

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

    • NEW

      public static final FlowKind NEW
    • LOCAL_ASSIGN

      public static final FlowKind LOCAL_ASSIGN
    • INSTANCE_LOAD

      public static final FlowKind INSTANCE_LOAD
    • INSTANCE_STORE

      public static final FlowKind INSTANCE_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
    • FIELD_STORE

      public static final FlowKind FIELD_STORE
    • FIELD_LOAD

      public static final FlowKind FIELD_LOAD
    • CALL_STORE

      public static final FlowKind CALL_STORE
    • CALL_LOAD

      public static final FlowKind CALL_LOAD
    • EXCEPTION_FLOW

      public static final FlowKind EXCEPTION_FLOW
    • IGNORE

      public static final FlowKind IGNORE
    • THIS_PARAM_PASSING

      public static final FlowKind THIS_PARAM_PASSING
    • THIS_CONNECT

      public static final FlowKind THIS_CONNECT
    • STATIC_METHOD_RETURN

      public static final FlowKind STATIC_METHOD_RETURN
    • STATIC_PARAMETER_PASSING

      public static final FlowKind STATIC_PARAMETER_PASSING
    • THIS_METHOD_RETURN

      public static final FlowKind THIS_METHOD_RETURN
    • THIS_FIELD_STORE_AND_LOAD

      public static final FlowKind THIS_FIELD_STORE_AND_LOAD
  • 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