Returns true if the field is volatile.
()
| 168 | /** Returns true if the field is volatile. */ |
| 169 | |
| 170 | final boolean isVolatile() { |
| 171 | return Modifier.isVolatile(getModifiers()); |
| 172 | } |
| 173 | |
| 174 | /** Returns true if the field is transient. */ |
| 175 |
nothing calls this directly
no test coverage detected