Interface FunctionalExpression
-
- All Superinterfaces:
ASTExpression
,ASTMemberValue
,ASTSwitchArrowRHS
,GenericNode<JavaNode>
,JavaNode
,JjtreeNode<JavaNode>
,Node
,Reportable
,TextAvailableNode
,TypeNode
- All Known Implementing Classes:
ASTLambdaExpression
,ASTMethodReference
public interface FunctionalExpression extends ASTExpression
A method reference or lambda expression.
-
-
Field Summary
-
Fields inherited from interface net.sourceforge.pmd.lang.ast.Node
COORDS_COMPARATOR
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description JMethodSig
getFunctionalMethod()
Returns the method that is overridden in the functional interface.@NonNull JTypeMirror
getTypeMirror()
Returns the type of the functional interface.-
Methods inherited from interface net.sourceforge.pmd.lang.java.ast.ASTExpression
getConstValue, getConversionContext, getParenthesisDepth, isCompileTimeConstant, isExpression, isParenthesized
-
Methods inherited from interface net.sourceforge.pmd.lang.ast.impl.GenericNode
ancestors, ancestorsOrSelf, asStream, children, descendants, descendantsOrSelf, getChild, getFirstChild, getLastChild, getNextSibling, getParent, getPreviousSibling
-
Methods inherited from interface net.sourceforge.pmd.lang.java.ast.JavaNode
getEnclosingType, getRoot, getSymbolTable, getTypeSystem
-
Methods inherited from interface net.sourceforge.pmd.lang.ast.impl.javacc.JjtreeNode
getFirstToken, getLastToken, tokens
-
Methods inherited from interface net.sourceforge.pmd.lang.ast.Node
acceptVisitor, ancestors, children, compareLocation, descendants, firstChild, getAstInfo, getBeginColumn, getBeginLine, getEndColumn, getEndLine, getImage, getIndexInParent, getLanguageVersion, getNumChildren, getReportLocation, getTextDocument, getUserMap, getXPathAttributesIterator, getXPathNodeName, hasImageEqualTo, isFindBoundary
-
Methods inherited from interface net.sourceforge.pmd.lang.ast.TextAvailableNode
getOriginalText, getText, getTextRegion
-
Methods inherited from interface net.sourceforge.pmd.lang.java.ast.TypeNode
getTypeMirror
-
-
-
-
Method Detail
-
getTypeMirror
@NonNull JTypeMirror getTypeMirror()
Returns the type of the functional interface. E.g. instringStream.map(s -> s.isEmpty())
, this isjava.util.function.Function<java.lang.String, java.lang.Boolean>
.- Specified by:
getTypeMirror
in interfaceTypeNode
- Returns:
- The type mirror. Never returns null; if the type is unresolved, returns
TypeSystem.UNKNOWN
. - See Also:
getFunctionalMethod()
-
getFunctionalMethod
JMethodSig getFunctionalMethod()
Returns the method that is overridden in the functional interface. E.g. instringStream.map(s -> s.isEmpty())
, this isjava.util.function.Function#apply(java.lang.String) -> java.lang.Boolean
- See Also:
getTypeMirror()
-
-