Lines Matching defs:Method

38  * A {@code Method} provides information about, and access to, a single method
42 * <p>A {@code Method} permits widening conversions to occur when matching the
58 class Method extends AbstractMethod implements GenericDeclaration,
65 public static final Comparator<Method> ORDER_BY_SIGNATURE = new Comparator<Method>() {
66 @Override public int compare(Method a, Method b) {
88 private Method() {
93 * that declares the method represented by this {@code Method} object.
100 * Returns the name of the method represented by this {@code Method}
111 * by this {@code Method} object, as an integer. The {@code Modifier} class should
135 public TypeVariable<Method>[] getTypeParameters() {
137 return (TypeVariable<Method>[]) info.formalTypeParameters.clone();
142 * of the method represented by this {@code Method} object.
155 * type of the method represented by this {@code Method} object.
185 * represented by this {@code Method} object. Returns an array of length
199 * this {@code Method} object. Returns an array of length 0 if the
231 * represented by this {@code Method} object. Returns an array of length
241 * exceptions declared to be thrown by this {@code Method} object.
266 * Compares this {@code Method} against the specified object. Returns
272 if (obj != null && obj instanceof Method) {
273 Method other = (Method)obj;
294 * Returns a hashcode for this {@code Method}. The hashcode is computed
303 * Returns a string describing this {@code Method}. The string is
357 * Returns a string describing this {@code Method}, including
389 * @return a string describing this {@code Method},
453 * Invokes the underlying method represented by this {@code Method}
489 * @exception IllegalAccessException if this {@code Method} object
563 * this {@code Method} instance. If the member is of a primitive type,
569 * by this {@code Method} instance.
580 * this {@code Method} object. (Returns an array of length zero if the
590 * Method object
630 boolean equalNameAndParameters(Method m) {