Indicates whether this member is declared private. @return true if the private modifier is present
()
| 66 | * @return {@code true} if the private modifier is present |
| 67 | */ |
| 68 | default boolean isPrivate() { |
| 69 | return (getModifiers() & Modifier.PRIVATE) != 0; |
| 70 | } |
| 71 |
no outgoing calls
no test coverage detected