Package org.apache.xmlbeans
Interface InterfaceExtension.MethodSignature
-
- Enclosing interface:
- InterfaceExtension
public static interface InterfaceExtension.MethodSignature
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.String[]
getExceptionTypes()
Returns the fully qualified type name of the exception types.java.lang.String
getName()
Returns the name of the method.java.lang.String[]
getParameterTypes()
Returns the fully qualified type name of the parameter types in order.java.lang.String
getReturnType()
Returns the fully qualified type name of the return value or 'void' for no return value.
-
-
-
Method Detail
-
getName
java.lang.String getName()
Returns the name of the method.
-
getReturnType
java.lang.String getReturnType()
Returns the fully qualified type name of the return value or 'void' for no return value.
-
getParameterTypes
java.lang.String[] getParameterTypes()
Returns the fully qualified type name of the parameter types in order.
-
getExceptionTypes
java.lang.String[] getExceptionTypes()
Returns the fully qualified type name of the exception types.
-
-