Adds a CONSTANT_Float_info to the constant pool of this symbol table. Does nothing if the constant pool already contains a similar item. @param value a float. @return a new or already existing Symbol with the given value.
(final float value)
| 637 | * @return a new or already existing Symbol with the given value. |
| 638 | */ |
| 639 | Symbol addConstantFloat(final float value) { |
| 640 | return addConstantInteger(Symbol.CONSTANT_FLOAT_TAG, Float.floatToRawIntBits(value)); |
| 641 | } |
| 642 | |
| 643 | /** |
| 644 | * Adds a CONSTANT_Integer_info or CONSTANT_Float_info to the constant pool of this symbol table. |
no test coverage detected