Class TypeExtractionUtils.LambdaExecutable
- java.lang.Object
-
- org.apache.flink.api.java.typeutils.TypeExtractionUtils.LambdaExecutable
-
- Enclosing class:
- TypeExtractionUtils
public static class TypeExtractionUtils.LambdaExecutable extends Object
Similar to a Java 8 Executable but with a return type.
-
-
Constructor Summary
Constructors Constructor Description LambdaExecutable(Constructor<?> constructor)LambdaExecutable(Method method)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanexecutablesEquals(Constructor<?> c)booleanexecutablesEquals(Method m)StringgetName()Type[]getParameterTypes()TypegetReturnType()
-
-
-
Constructor Detail
-
LambdaExecutable
public LambdaExecutable(Constructor<?> constructor)
-
LambdaExecutable
public LambdaExecutable(Method method)
-
-
Method Detail
-
getParameterTypes
public Type[] getParameterTypes()
-
getReturnType
public Type getReturnType()
-
getName
public String getName()
-
executablesEquals
public boolean executablesEquals(Method m)
-
executablesEquals
public boolean executablesEquals(Constructor<?> c)
-
-