public class InstanceOfNode extends Node
x instanceof Point
| Modifier and Type | Field and Description | 
|---|---|
| protected Node | operandThe value being tested. | 
| protected TypeMirror | refTypeThe reference type being tested against. | 
| protected InstanceOfTree | treeThe tree associated with this node. | 
| Constructor and Description | 
|---|
| InstanceOfNode(Tree tree,
              Node operand,
              TypeMirror refType,
              Types types) | 
| Modifier and Type | Method and Description | 
|---|---|
| <R,P> R | accept(NodeVisitor<R,P> visitor,
      P p)Accept method of the visitor pattern | 
| boolean | equals(Object obj) | 
| Node | getOperand() | 
| Collection<Node> | getOperands() | 
| TypeMirror | getRefType() | 
| InstanceOfTree | getTree()Returns the  Treein the abstract syntax tree, ornullif no corresponding
 tree exists. | 
| TypeMirror | getType()Returns a  TypeMirrorrepresenting the type of aNodeANodewill
 always have a type even when it has noTree. | 
| int | hashCode() | 
| String | toString() | 
getAssignmentContext, getBlock, getInSource, getTransitiveOperands, isLValue, setAssignmentContext, setBlock, setInSource, setLValueprotected Node operand
protected TypeMirror refType
protected final InstanceOfTree tree
public InstanceOfNode(Tree tree, Node operand, TypeMirror refType, Types types)
public Node getOperand()
public TypeMirror getType()
NodeTypeMirror representing the type of a Node A Node will
 always have a type even when it has no Tree.getType in class NodeTypeMirror representing the type of this Nodepublic TypeMirror getRefType()
public InstanceOfTree getTree()
NodeTree in the abstract syntax tree, or null if no corresponding
 tree exists. For instance, this is the case for an ImplicitThisLiteralNode.public <R,P> R accept(NodeVisitor<R,P> visitor, P p)
Nodepublic Collection<Node> getOperands()
getOperands in class NodeNodes of this Node.