[Java] Class FieldNode
- org.codehaus.groovy.ast.FieldNode
- All Implemented Interfaces and Traits:
- org.objectweb.asm.Opcodes, Variable
public class FieldNode extends AnnotatedNode implements org.objectweb.asm.Opcodes, Variable
Represents a field (member variable)
Constructor Summary
Constructor and description |
---|
protected FieldNode
() |
FieldNode
(String name, int modifiers, ClassNode type, ClassNode owner, Expression initialValueExpression) |
Methods Summary
Type Params | Return Type | Name and description |
---|---|---|
public Expression |
getInitialExpression() | |
public Expression |
getInitialValueExpression() | |
public int |
getModifiers() | |
public String |
getName() | |
public ClassNode |
getOriginType() | |
public ClassNode |
getOwner() | |
public ClassNode |
getType() | |
public boolean |
hasInitialExpression() | |
public boolean |
isClosureSharedVariable() @deprecated | |
public boolean |
isDynamicTyped() | |
public boolean |
isEnum()
| |
public boolean |
isFinal()
| |
public boolean |
isHolder() | |
public boolean |
isInStaticContext() | |
public boolean |
isPrivate()
| |
public boolean |
isProtected()
| |
public boolean |
isPublic()
| |
public boolean |
isStatic()
| |
public boolean |
isVolatile()
| |
public static FieldNode |
newStatic(Class theClass, String name) | |
public void |
rename(String name) | |
public void |
setClosureSharedVariable(boolean inClosure) @deprecated | |
public void |
setHolder(boolean holder) | |
public void |
setInitialValueExpression(Expression initialValueExpression) | |
public void |
setModifiers(int modifiers) | |
public void |
setOriginType(ClassNode cn) | |
public void |
setOwner(ClassNode owner)
| |
public void |
setType(ClassNode type) |
Inherited Methods Summary
Methods inherited from class | Name |
---|---|
class AnnotatedNode | addAnnotation, addAnnotations, getAnnotations, getAnnotations, getDeclaringClass, getGroovydoc, getInstance, hasNoRealSourcePosition, isSynthetic, setDeclaringClass, setHasNoRealSourcePosition, setSynthetic |
class ASTNode | copyNodeMetaData, getColumnNumber, getLastColumnNumber, getLastLineNumber, getLineNumber, getMetaDataMap, getText, setColumnNumber, setLastColumnNumber, setLastLineNumber, setLineNumber, setMetaDataMap, setSourcePosition, visit |
Constructor Detail
protected FieldNode()
public FieldNode(String name, int modifiers, ClassNode type, ClassNode owner, Expression initialValueExpression)
Method Detail
@Override public Expression getInitialExpression()
public Expression getInitialValueExpression()
@Override public int getModifiers()
@Override public String getName()
@Override public ClassNode getOriginType()
public ClassNode getOwner()
@Override public ClassNode getType()
@Override public boolean hasInitialExpression()
@Deprecated @Override public boolean isClosureSharedVariable()
- deprecated:
@Override public boolean isDynamicTyped()
public boolean isEnum()
- Returns:
- true if the field is an enum
public boolean isFinal()
- Returns:
- true if the field is final
public boolean isHolder()
@Override public boolean isInStaticContext()
public boolean isPrivate()
- Returns:
- true if the field is private
- Since:
- 2.5.0
public boolean isProtected()
- Returns:
- true if the field is protected
public boolean isPublic()
- Returns:
- true if the field is public
public boolean isStatic()
- Returns:
- true if the field is static
public boolean isVolatile()
- Returns:
- true if the field is volatile
public static FieldNode newStatic(Class theClass, String name)
public void rename(String name)
@Deprecated @Override public void setClosureSharedVariable(boolean inClosure)
- deprecated:
public void setHolder(boolean holder)
public void setInitialValueExpression(Expression initialValueExpression)
public void setModifiers(int modifiers)
public void setOriginType(ClassNode cn)
public void setOwner(ClassNode owner)
- Parameters:
-
owner
- The owner to set.
public void setType(ClassNode type)
© 2003-2020 The Apache Software Foundation
Licensed under the Apache license.
https://docs.groovy-lang.org/3.0.7/html/gapi/org/codehaus/groovy/ast/FieldNode.html