MCPcopy Create free account
hub / github.com/antlr/codebuff / isFinal

Method isFinal

output/java_guava/1.4.18/Element.java:143–145  ·  view source on GitHub ↗

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

()

Source from the content-addressed store, hash-verified

141
142
143 public final boolean isFinal() {
144 return Modifier.isFinal(getModifiers());
145 }
146
147 /** Returns true if the method is abstract. */
148

Callers 1

isOverridableMethod · 0.45

Calls 1

getModifiersMethod · 0.95

Tested by

no test coverage detected