Convenience method to get this array as a character if it contains a single element. This method calls {@link JsonElement#getAsCharacter()} on the element, therefore any of the exceptions declared by that method can occur. @return this element as a primitive short if it is single element array. @th
()
| 370 | * a string's first character. |
| 371 | */ |
| 372 | @Deprecated |
| 373 | @Override |
| 374 | public char getAsCharacter() { |
| 375 | return getAsSingleElement().getAsCharacter(); |
| 376 | } |
| 377 | |
| 378 | /** |
| 379 | * Convenience method to get this array as a primitive short if it contains a single element. This |
nothing calls this directly
no test coverage detected