Indicates whether this member is declared static. @return true if the static modifier is present
()
| 93 | * @return {@code true} if the static modifier is present |
| 94 | */ |
| 95 | default boolean isStatic() { |
| 96 | return (getModifiers() & Modifier.STATIC) != 0; |
| 97 | } |
| 98 |
no outgoing calls
no test coverage detected