Check whether this primitive contains a String value. @return true if this primitive contains a String value, false otherwise.
()
| 172 | * @return true if this primitive contains a String value, false otherwise. |
| 173 | */ |
| 174 | public boolean isString() { |
| 175 | return value instanceof String; |
| 176 | } |
| 177 | |
| 178 | /** |
| 179 | * convenience method to get this element as a String. |
no outgoing calls