Compute the string value. @return the string
()
| 188 | * @return the string |
| 189 | */ |
| 190 | @Override |
| 191 | public String toString() { |
| 192 | switch (type) { |
| 193 | case T_NULL: |
| 194 | case T_STR: |
| 195 | // No conversion required |
| 196 | break; |
| 197 | case T_BYTES: |
| 198 | strValue = byteC.toString(); |
| 199 | break; |
| 200 | case T_CHARS: |
| 201 | strValue = charC.toString(); |
| 202 | break; |
| 203 | } |
| 204 | |
| 205 | return strValue; |
| 206 | } |
| 207 | |
| 208 | |
| 209 | /** |