Check whether this primitive contains a Number. @return true if this primitive contains a Number, false otherwise.
()
| 135 | * @return true if this primitive contains a Number, false otherwise. |
| 136 | */ |
| 137 | public boolean isNumber() { |
| 138 | return value instanceof Number; |
| 139 | } |
| 140 | |
| 141 | /** |
| 142 | * convenience method to get this element as a Number. |
no outgoing calls