Tells whether a given access modifier is private @param mod The access modifier to check @return True if the access modifier is private, false otherwise
(int mod)
| 37 | * @return True if the access modifier is private, false otherwise |
| 38 | */ |
| 39 | public static boolean isPrivate(int mod) { |
| 40 | return (mod & ACC_PRIVATE) != 0; |
| 41 | } |
| 42 | |
| 43 | /** |
| 44 | * Tells whether a given access modifier is static |
no outgoing calls
no test coverage detected