Enum symbol_type

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

    public enum symbol_type
    extends java.lang.Enum<symbol_type>
    • Enum Constant Detail

      • space_symbol

        public static final symbol_type space_symbol
      • token_symbol

        public static final symbol_type token_symbol
      • userop_symbol

        public static final symbol_type userop_symbol
      • value_symbol

        public static final symbol_type value_symbol
      • valuemap_symbol

        public static final symbol_type valuemap_symbol
      • name_symbol

        public static final symbol_type name_symbol
      • varnode_symbol

        public static final symbol_type varnode_symbol
      • varnodelist_symbol

        public static final symbol_type varnodelist_symbol
      • operand_symbol

        public static final symbol_type operand_symbol
      • start_symbol

        public static final symbol_type start_symbol
      • end_symbol

        public static final symbol_type end_symbol
      • subtable_symbol

        public static final symbol_type subtable_symbol
      • macro_symbol

        public static final symbol_type macro_symbol
      • section_symbol

        public static final symbol_type section_symbol
      • bitrange_symbol

        public static final symbol_type bitrange_symbol
      • context_symbol

        public static final symbol_type context_symbol
      • epsilon_symbol

        public static final symbol_type epsilon_symbol
      • label_symbol

        public static final symbol_type label_symbol
      • dummy_symbol

        public static final symbol_type dummy_symbol
    • Method Detail

      • values

        public static symbol_type[] 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 (symbol_type c : symbol_type.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static symbol_type 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