MCPcopy Create free account
hub / github.com/apache/groovy / isStatic

Method isStatic

src/main/java/org/codehaus/groovy/ast/MethodNode.java:306–308  ·  view source on GitHub ↗

Checks whether this method is declared as static. @return true if this method has the static modifier

()

Source from the content-addressed store, hash-verified

304 * @return true if this method has the static modifier
305 */
306 public boolean isStatic() {
307 return (modifiers & ACC_STATIC) != 0;
308 }
309
310 /**
311 * Checks whether this method is declared as public.

Callers 15

addCovariantMethodsMethod · 0.95
setMethodTargetMethod · 0.95
findOwnerMethod · 0.95
isStaticMemberNamedMethod · 0.95
adaptMethodReferenceMethod · 0.95
setModifiersMethod · 0.95
setParametersMethod · 0.95
setVariableScopeMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected