Uses of Class
com.google.auto.value.processor.escapevelocity.Parser.Operator
-
Packages that use Parser.Operator Package Description com.google.auto.value.processor.escapevelocity -
-
Uses of Parser.Operator in com.google.auto.value.processor.escapevelocity
Fields in com.google.auto.value.processor.escapevelocity declared as Parser.Operator Modifier and Type Field Description private Parser.Operator
Parser.OperatorParser. currentOperator
The operator we have just scanned, in the same way thatParser.c
is the character we have just read.(package private) Parser.Operator
ExpressionNode.BinaryExpressionNode. op
Fields in com.google.auto.value.processor.escapevelocity with type parameters of type Parser.Operator Modifier and Type Field Description private static com.google.common.collect.ImmutableListMultimap<java.lang.Integer,Parser.Operator>
Parser. CODE_POINT_TO_OPERATORS
Maps a code point to the operators that begin with that code point.Methods in com.google.auto.value.processor.escapevelocity that return Parser.Operator Modifier and Type Method Description static Parser.Operator
Parser.Operator. valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static Parser.Operator[]
Parser.Operator. values()
Returns an array containing the constants of this enum type, in the order they are declared.Constructors in com.google.auto.value.processor.escapevelocity with parameters of type Parser.Operator Constructor Description BinaryExpressionNode(ExpressionNode lhs, Parser.Operator op, ExpressionNode rhs)
-