Parses a UTF8String value. @return the parsed UTF-8 string
()
| 237 | * @return the parsed UTF-8 string |
| 238 | */ |
| 239 | public String parseUTF8String() { |
| 240 | byte[] val = parseBytes(TAG_UTF8STRING); |
| 241 | return new String(val, StandardCharsets.UTF_8); |
| 242 | } |
| 243 | |
| 244 | |
| 245 | /** |
nothing calls this directly
no test coverage detected