MCPcopy Index your code
hub / github.com/apache/groovy / isStatic

Method isStatic

src/main/java/org/codehaus/groovy/ast/Variable.java:172–172  ·  view source on GitHub ↗

Returns true if this variable is declared with the static modifier. @return true if static @since 5.0.0

()

Source from the content-addressed store, hash-verified

170 * @since 5.0.0
171 */
172 default boolean isStatic() {
173 return (getModifiers() & ACC_STATIC) != 0;
174 }
175

Callers 15

isStaticReferenceMethod · 0.95
fromCacheHandleMethod · 0.65
getValueMethod · 0.65
chooseMetaMethod · 0.65
skipMethodMethod · 0.65
visitPropertyMethod · 0.65
printFieldMethod · 0.65
printMethodMethod · 0.65
canSeeTypeVarsMethod · 0.65
resolveFromModuleMethod · 0.65

Implementers 5

PropertyNodesrc/main/java/org/codehaus/groovy/ast/
Parametersrc/main/java/org/codehaus/groovy/ast/
DynamicVariablesrc/main/java/org/codehaus/groovy/ast/
FieldNodesrc/main/java/org/codehaus/groovy/ast/
VariableExpressionsrc/main/java/org/codehaus/groovy/ast/

Calls

no outgoing calls

Tested by 1

isRecursiveMethod · 0.52