Package org.mockito.internal.invocation
Interface MockitoMethod
-
- All Superinterfaces:
AbstractAwareMethod
- All Known Implementing Classes:
DelegatingMethod
,SerializableMethod
public interface MockitoMethod extends AbstractAwareMethod
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.Class<?>[]
getExceptionTypes()
java.lang.reflect.Method
getJavaMethod()
java.lang.String
getName()
java.lang.Class<?>[]
getParameterTypes()
java.lang.Class<?>
getReturnType()
boolean
isVarArgs()
-
Methods inherited from interface org.mockito.internal.invocation.AbstractAwareMethod
isAbstract
-
-
-
-
Method Detail
-
getName
java.lang.String getName()
-
getReturnType
java.lang.Class<?> getReturnType()
-
getParameterTypes
java.lang.Class<?>[] getParameterTypes()
-
getExceptionTypes
java.lang.Class<?>[] getExceptionTypes()
-
isVarArgs
boolean isVarArgs()
-
getJavaMethod
java.lang.reflect.Method getJavaMethod()
-
-