Enum NodeType

  • All Implemented Interfaces:
    java.io.Serializable, java.lang.Comparable<NodeType>

    public enum NodeType
    extends java.lang.Enum<NodeType>
    Represents the type (DFA-wise) of a DataFlowNode.
    Author:
    raik
    • Enum Constant Detail

      • ROOT

        public static final NodeType ROOT
      • IF_EXPR

        public static final NodeType IF_EXPR
      • IF_LAST_STATEMENT

        public static final NodeType IF_LAST_STATEMENT
      • IF_LAST_STATEMENT_WITHOUT_ELSE

        public static final NodeType IF_LAST_STATEMENT_WITHOUT_ELSE
      • ELSE_LAST_STATEMENT

        public static final NodeType ELSE_LAST_STATEMENT
      • WHILE_EXPR

        public static final NodeType WHILE_EXPR
      • WHILE_LAST_STATEMENT

        public static final NodeType WHILE_LAST_STATEMENT
      • SWITCH_START

        public static final NodeType SWITCH_START
      • CASE_LAST_STATEMENT

        public static final NodeType CASE_LAST_STATEMENT
      • SWITCH_LAST_DEFAULT_STATEMENT

        public static final NodeType SWITCH_LAST_DEFAULT_STATEMENT
      • SWITCH_END

        public static final NodeType SWITCH_END
      • FOR_INIT

        public static final NodeType FOR_INIT
      • FOR_EXPR

        public static final NodeType FOR_EXPR
      • FOR_UPDATE

        public static final NodeType FOR_UPDATE
      • FOR_BEFORE_FIRST_STATEMENT

        public static final NodeType FOR_BEFORE_FIRST_STATEMENT
      • FOR_END

        public static final NodeType FOR_END
      • DO_BEFORE_FIRST_STATEMENT

        public static final NodeType DO_BEFORE_FIRST_STATEMENT
      • DO_EXPR

        public static final NodeType DO_EXPR
      • RETURN_STATEMENT

        public static final NodeType RETURN_STATEMENT
      • BREAK_STATEMENT

        public static final NodeType BREAK_STATEMENT
      • CONTINUE_STATEMENT

        public static final NodeType CONTINUE_STATEMENT
      • LABEL_STATEMENT

        public static final NodeType LABEL_STATEMENT
      • LABEL_LAST_STATEMENT

        public static final NodeType LABEL_LAST_STATEMENT
      • ASSERT_STATEMENT

        public static final NodeType ASSERT_STATEMENT
      • THROW_STATEMENT

        public static final NodeType THROW_STATEMENT
    • Method Detail

      • values

        public static NodeType[] values()
        Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
        for (NodeType c : NodeType.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static NodeType valueOf​(java.lang.String name)
        Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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:
        java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
        java.lang.NullPointerException - if the argument is null
      • toString

        public java.lang.String toString()
        Overrides:
        toString in class java.lang.Enum<NodeType>