Interface ConstrainableExecutable
-
@Incubating public interface ConstrainableExecutable
Descriptor for a method of a Java class.- Since:
- 6.1.0
- Author:
- Marko Bekhta
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetName()Class<?>[]getParameterTypes()Class<?>getReturnType()
-
-
-
Method Detail
-
getReturnType
Class<?> getReturnType()
- Returns:
- the return type for the method this object represents
-
getName
String getName()
- Returns:
- the name of the method represented by this
ConstrainableExecutableobject
-
getParameterTypes
Class<?>[] getParameterTypes()
- Returns:
- the parameter types for the executable this object represents
-
-