Tells whether a given access modifier is final @param mod The access modifier to check @return True if the access modifier is final, false otherwise
(int mod)
| 81 | * @return True if the access modifier is final, false otherwise |
| 82 | */ |
| 83 | public static boolean isFinal(int mod) { |
| 84 | return (mod & ACC_FINAL) != 0; |
| 85 | } |
| 86 | |
| 87 | /** |
| 88 | * Tells whether a given access modifier is synthetic. A modifier is |