Returns true if the element is static.
()
| 128 | |
| 129 | |
| 130 | public final boolean isStatic() { |
| 131 | return Modifier.isStatic(getModifiers()); |
| 132 | } |
| 133 | |
| 134 | /** |
| 135 | * Returns {@code true} if this method is final, per {@code Modifier.isFinal(getModifiers())}. |
no test coverage detected