@return Whether or not the value is an integer
()
| 425 | |
| 426 | /** @return Whether or not the value is an integer */ |
| 427 | public boolean isInteger() { |
| 428 | return (Internal.getFlagsFromQualifier(qualifier) & |
| 429 | Const.FLAG_FLOAT) == 0x0; |
| 430 | } |
| 431 | } |
| 432 | |
| 433 | /** |
no test coverage detected