{@inheritDoc} @since 2018/09/23
()
| 138 | * @since 2018/09/23 |
| 139 | */ |
| 140 | @Override |
| 141 | public String toString() |
| 142 | { |
| 143 | Reference<String> ref = this._string; |
| 144 | String rv; |
| 145 | |
| 146 | if (ref == null || null == (rv = ref.get())) |
| 147 | this._string = new WeakReference<>( |
| 148 | (rv = Integer.toString(this._value))); |
| 149 | |
| 150 | return rv; |
| 151 | } |
| 152 | |
| 153 | /** |
| 154 | * Returns the number of bits which are in the value, this is the |