Returns true if this method is final, per Modifier.isFinal(getModifiers()). Note that a method may still be effectively "final", or non-overridable when it has no final keyword. For example, it could be private, or it could be declared by a final class. To tell whether a
()
| 141 | |
| 142 | |
| 143 | public final boolean isFinal() { |
| 144 | return Modifier.isFinal(getModifiers()); |
| 145 | } |
| 146 | |
| 147 | /** Returns true if the method is abstract. */ |
| 148 |
no test coverage detected