Adds a CONSTANT_String_info to the constant pool of this symbol table. Does nothing if the constant pool already contains a similar item. @param value a string. @return a new or already existing Symbol with the given value.
(final String value)
| 615 | * @return a new or already existing Symbol with the given value. |
| 616 | */ |
| 617 | Symbol addConstantString(final String value) { |
| 618 | return addConstantUtf8Reference(Symbol.CONSTANT_STRING_TAG, value); |
| 619 | } |
| 620 | |
| 621 | /** |
| 622 | * Adds a CONSTANT_Integer_info to the constant pool of this symbol table. Does nothing if the |
no test coverage detected