| Constructor and Description | 
|---|
| NodeUtils() | 
| Modifier and Type | Method and Description | 
|---|---|
| static boolean | isArrayLengthFieldAccess(Node node)Returns true iff  nodeis aFieldAccessNodethat is an access to an array's
 length. | 
| static boolean | isBooleanTypeNode(Node node)Returns true iff  nodecorresponds to a boolean typed expression (either the primitive
 typeboolean, or class typeBoolean). | 
| static boolean | isMethodInvocation(Node node,
                  ExecutableElement method,
                  ProcessingEnvironment env)Returns true iff  nodeis an invocation of the given method. | 
public static boolean isBooleanTypeNode(Node node)
node corresponds to a boolean typed expression (either the primitive
 type boolean, or class type Boolean).node corresponds to a boolean typed expression (either the primitive
     type boolean, or class type Boolean)public static boolean isArrayLengthFieldAccess(Node node)
node is a FieldAccessNode that is an access to an array's
 length.node is a FieldAccessNode that is an access to an array's
     lengthpublic static boolean isMethodInvocation(Node node, ExecutableElement method, ProcessingEnvironment env)
node is an invocation of the given method.