Resets the message bytes to an uninitialized (NULL) state.
()
| 125 | * Resets the message bytes to an uninitialized (NULL) state. |
| 126 | */ |
| 127 | public void recycle() { |
| 128 | type = T_NULL; |
| 129 | byteC.recycle(); |
| 130 | charC.recycle(); |
| 131 | |
| 132 | strValue = null; |
| 133 | |
| 134 | hasHashCode = false; |
| 135 | hasLongValue = false; |
| 136 | } |
| 137 | |
| 138 | |
| 139 | /** |