Uses of Class
com.google.auto.value.processor.escapevelocity.ReferenceNode
-
Packages that use ReferenceNode Package Description com.google.auto.value.processor.escapevelocity -
-
Uses of ReferenceNode in com.google.auto.value.processor.escapevelocity
Subclasses of ReferenceNode in com.google.auto.value.processor.escapevelocity Modifier and Type Class Description (package private) static classReferenceNode.IndexReferenceNodeA node in the parse tree that is an indexing of a reference, like$x[0]or$x.foo[$i].(package private) static classReferenceNode.MemberReferenceNodeA node in the parse tree that is a reference to a property of another reference, like$x.fooor$x[$i].foo.(package private) static classReferenceNode.MethodReferenceNodeA node in the parse tree representing a method reference, like$list.size().(package private) static classReferenceNode.PlainReferenceNodeA node in the parse tree that is a plain reference such as$x.Fields in com.google.auto.value.processor.escapevelocity declared as ReferenceNode Modifier and Type Field Description (package private) ReferenceNodeReferenceNode.IndexReferenceNode. lhs(package private) ReferenceNodeReferenceNode.MemberReferenceNode. lhs(package private) ReferenceNodeReferenceNode.MethodReferenceNode. lhsMethods in com.google.auto.value.processor.escapevelocity that return ReferenceNode Modifier and Type Method Description private ReferenceNodeParser. parseReferenceIndex(ReferenceNode lhs)Parses an index suffix to a method, like$x[$i].private ReferenceNodeParser. parseReferenceMember(ReferenceNode lhs)Parses a reference member, which is either a property reference like$x.yor a method call like$x.y($z).private ReferenceNodeParser. parseReferenceMethodParams(ReferenceNode lhs, java.lang.String id)Parses the parameters to a method reference, like$foo.bar($a, $b).private ReferenceNodeParser. parseReferenceNoBrace()Parses a reference, in the simple form without braces.private ReferenceNodeParser. parseReferenceSuffix(ReferenceNode lhs)Parses the modifiers that can appear at the tail of a reference.private ReferenceNodeParser. parseRequiredReference()Same asParser.parseReference(), except it really must be a reference.Methods in com.google.auto.value.processor.escapevelocity with parameters of type ReferenceNode Modifier and Type Method Description private ReferenceNodeParser. parseReferenceIndex(ReferenceNode lhs)Parses an index suffix to a method, like$x[$i].private ReferenceNodeParser. parseReferenceMember(ReferenceNode lhs)Parses a reference member, which is either a property reference like$x.yor a method call like$x.y($z).private ReferenceNodeParser. parseReferenceMethodParams(ReferenceNode lhs, java.lang.String id)Parses the parameters to a method reference, like$foo.bar($a, $b).private ReferenceNodeParser. parseReferenceSuffix(ReferenceNode lhs)Parses the modifiers that can appear at the tail of a reference.Constructors in com.google.auto.value.processor.escapevelocity with parameters of type ReferenceNode Constructor Description IndexReferenceNode(ReferenceNode lhs, ExpressionNode index)MemberReferenceNode(ReferenceNode lhs, java.lang.String id)MethodReferenceNode(ReferenceNode lhs, java.lang.String id, java.util.List<ExpressionNode> args)
-