本文整理汇总了Java中java.lang.reflect.Method.getTypeParameters方法的典型用法代码示例。如果您正苦于以下问题:Java Method.getTypeParameters方法的具体用法?Java Method.getTypeParameters怎么用?Java Method.getTypeParameters使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类java.lang.reflect.Method
的用法示例。
在下文中一共展示了Method.getTypeParameters方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: visit
import java.lang.reflect.Method; //导入方法依赖的package包/类
private void visit(Class<?> type, Set<Class<?>> types) {
if (type.isArray()) {
visit(type.getComponentType(), types);
return;
}
if (!type.isInterface() || !types.add(type) || stopAt.contains(type)) {
return;
}
for (Type superType : type.getGenericInterfaces()) {
visit(superType, types);
}
for (Method method : type.getDeclaredMethods()) {
visit(method.getGenericReturnType(), types);
for (TypeVariable<Method> typeVariable : method.getTypeParameters()) {
visit(typeVariable, types);
}
}
}
示例2: isValidMethod
import java.lang.reflect.Method; //导入方法依赖的package包/类
private static boolean isValidMethod(InjectableMethod injectableMethod,
Errors errors) {
boolean result = true;
if (injectableMethod.jsr330) {
Method method = injectableMethod.method;
if (Modifier.isAbstract(method.getModifiers())) {
errors.cannotInjectAbstractMethod(method);
result = false;
}
if (method.getTypeParameters().length > 0) {
errors.cannotInjectMethodWithTypeParameters(method);
result = false;
}
}
return result;
}
示例3: validateRuleMethod
import java.lang.reflect.Method; //导入方法依赖的package包/类
private void validateRuleMethod(MethodRuleDefinition<?, ?> ruleDefinition, Method ruleMethod, RuleSourceValidationProblemCollector problems) {
if (Modifier.isPrivate(ruleMethod.getModifiers())) {
problems.add(ruleMethod, "A rule method cannot be private");
}
if (Modifier.isAbstract(ruleMethod.getModifiers())) {
problems.add(ruleMethod, "A rule method cannot be abstract");
}
if (ruleMethod.getTypeParameters().length > 0) {
problems.add(ruleMethod, "Cannot have type variables (i.e. cannot be a generic method)");
}
// TODO validations on method: synthetic, bridge methods, varargs, abstract, native
ModelType<?> returnType = ModelType.returnType(ruleMethod);
if (returnType.isRawClassOfParameterizedType()) {
problems.add(ruleMethod, "Raw type " + returnType + " used for return type (all type parameters must be specified of parameterized type)");
}
for (int i = 0; i < ruleDefinition.getReferences().size(); i++) {
ModelReference<?> reference = ruleDefinition.getReferences().get(i);
if (reference.getType().isRawClassOfParameterizedType()) {
problems.add(ruleMethod, "Raw type " + reference.getType() + " used for parameter " + (i + 1) + " (all type parameters must be specified of parameterized type)");
}
if (reference.getPath() != null) {
try {
ModelPath.validatePath(reference.getPath().getPath());
} catch (Exception e) {
problems.add(ruleDefinition, "The declared model element path '" + reference.getPath().getPath() + "' used for parameter " + (i + 1) + " is not a valid path", e);
}
}
}
}
示例4: MethodSignature
import java.lang.reflect.Method; //导入方法依赖的package包/类
MethodSignature(Method method) {
name = method.getName();
parameterTypes = Arrays.asList(method.getParameterTypes());
typeSignature = new TypeSignature(method.getTypeParameters());
}