Class LambdaIdentifiersExpression
- java.lang.Object
-
- org.jd.core.v1.model.javasyntax.expression.AbstractLineNumberExpression
-
- org.jd.core.v1.model.javasyntax.expression.AbstractLineNumberTypeExpression
-
- org.jd.core.v1.model.javasyntax.expression.AbstractLambdaExpression
-
- org.jd.core.v1.model.javasyntax.expression.LambdaIdentifiersExpression
-
- All Implemented Interfaces:
java.lang.Iterable<Expression>
,BaseExpression
,Expression
,Base<Expression>
public class LambdaIdentifiersExpression extends AbstractLambdaExpression
-
-
Field Summary
Fields Modifier and Type Field Description protected java.util.List<java.lang.String>
parameters
protected Type
returnedType
-
Fields inherited from class org.jd.core.v1.model.javasyntax.expression.AbstractLambdaExpression
statements
-
Fields inherited from class org.jd.core.v1.model.javasyntax.expression.AbstractLineNumberTypeExpression
type
-
Fields inherited from class org.jd.core.v1.model.javasyntax.expression.AbstractLineNumberExpression
lineNumber
-
Fields inherited from interface org.jd.core.v1.model.javasyntax.expression.Expression
UNKNOWN_LINE_NUMBER
-
-
Constructor Summary
Constructors Constructor Description LambdaIdentifiersExpression(int lineNumber, Type type, Type returnedType, java.util.List<java.lang.String> parameters, BaseStatement statements)
LambdaIdentifiersExpression(Type type, Type returnedType, java.util.List<java.lang.String> parameters, BaseStatement statements)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
accept(ExpressionVisitor visitor)
java.util.List<java.lang.String>
getParameters()
Type
getReturnedType()
java.lang.String
toString()
-
Methods inherited from class org.jd.core.v1.model.javasyntax.expression.AbstractLambdaExpression
getPriority, getStatements
-
Methods inherited from class org.jd.core.v1.model.javasyntax.expression.AbstractLineNumberTypeExpression
getType, setType
-
Methods inherited from class org.jd.core.v1.model.javasyntax.expression.AbstractLineNumberExpression
getLineNumber
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
-
-
-
Field Detail
-
returnedType
protected Type returnedType
-
parameters
protected java.util.List<java.lang.String> parameters
-
-
Constructor Detail
-
LambdaIdentifiersExpression
public LambdaIdentifiersExpression(Type type, Type returnedType, java.util.List<java.lang.String> parameters, BaseStatement statements)
-
LambdaIdentifiersExpression
public LambdaIdentifiersExpression(int lineNumber, Type type, Type returnedType, java.util.List<java.lang.String> parameters, BaseStatement statements)
-
-
Method Detail
-
getReturnedType
public Type getReturnedType()
-
getParameters
public java.util.List<java.lang.String> getParameters()
-
accept
public void accept(ExpressionVisitor visitor)
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Object
-
-