Package org.apache.xmlbeans
Interface InterfaceExtension.MethodSignature
- Enclosing interface:
InterfaceExtension
public static interface InterfaceExtension.MethodSignature
-
Method Summary
Modifier and TypeMethodDescriptionString[]
Returns the fully qualified type name of the exception types.getName()
Returns the name of the method.String[]
Returns the name of the parameterString[]
Returns the fully qualified type name of the parameter types in order.Returns the fully qualified type name of the return value or 'void' for no return value.
-
Method Details
-
getName
String getName()Returns the name of the method. -
getReturnType
String getReturnType()Returns the fully qualified type name of the return value or 'void' for no return value. -
getParameterTypes
String[] getParameterTypes()Returns the fully qualified type name of the parameter types in order. -
getParameterNames
String[] getParameterNames()Returns the name of the parameter -
getExceptionTypes
String[] getExceptionTypes()Returns the fully qualified type name of the exception types.
-