Java Code Examples for com.sun.tools.javac.tree.JCTree.Tag#LT
The following examples show how to use
com.sun.tools.javac.tree.JCTree.Tag#LT .
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: ManAttr.java From manifold with Apache License 2.0 | 5 votes |
static boolean isComparableOperator( Tag tag ) { return tag == Tag.EQ || tag == Tag.NE || tag == Tag.LT || tag == Tag.LE || tag == Tag.GT || tag == Tag.GE; }
Example 2
Source File: ManAttr.java From manifold with Apache License 2.0 | 5 votes |
static boolean isRelationalOperator( Tag tag ) { return tag == Tag.LT || tag == Tag.LE || tag == Tag.GT || tag == Tag.GE; }