Java org.eclipse.jdt.core.dom Expression fields, constructors, methods, implement or subclass

Example usage for Java org.eclipse.jdt.core.dom Expression fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.eclipse.jdt.core.dom Expression.

The text is from its open source code.

Subclass

org.eclipse.jdt.core.dom.Expression has subclasses.
Click this link to see all its subclasses.

Method

voidaccept(ASTVisitor visitor)
Accepts the given visitor on a visit of the current node.
voiddelete()
Removes this node from its parent.
booleanequals(Object obj)
The ASTNode implementation of this Object method uses object identity (==).
ASTgetAST()
Returns this node's AST.
intgetLength()
Returns the length in characters of the original source file indicating where the source fragment corresponding to this node ends.
StructuralPropertyDescriptorgetLocationInParent()
Returns the location of this node within its parent, or null if this is a root node.
intgetNodeType()
Returns an integer value identifying the type of this concrete AST node.
ASTNodegetParent()
Returns this node's parent node, or null if this is the root node.
ObjectgetProperty(String propertyName)
Returns the value of the named property of this node, or null if none.
ASTNodegetRoot()
Returns the root node at or above this node; returns this node if it is a root.
intgetStartPosition()
Returns the character index into the original source file indicating where the source fragment corresponding to this node begins.
Mapproperties()
Returns an unmodifiable table of the properties of this node with non-null values.
booleanresolveBoxing()
Returns whether this expression node is the site of a boxing conversion (JLS3 5.1.7).
ObjectresolveConstantExpressionValue()
Resolves and returns the compile-time constant expression value as specified in JLS2 15.28, if this expression has one.
ITypeBindingresolveTypeBinding()
Resolves and returns the binding for the type of this expression.
booleanresolveUnboxing()
Returns whether this expression node is the site of an unboxing conversion (JLS3 5.1.8).
voidsetProperty(String propertyName, Object data)
Sets the named property of this node to the given value, or to null to clear it.
voidsetSourceRange(int startPosition, int length)
Sets the source range of the original source file where the source fragment corresponding to this node was found.
booleansubtreeMatch(ASTMatcher matcher, Object other)
Returns whether the subtree rooted at the given node matches the given other object as decided by the given matcher.
StringtoString()
Returns a string representation of this node suitable for debugging purposes only.