Home | History | Annotate | Download | only in reflect

Lines Matching refs:typeVariable

34 import java.lang.reflect.TypeVariable;
288 static TypeVariable<?> getTypeVariable(String methodName) throws Exception {
293 return (TypeVariable<?>) parameterType.getActualTypeArguments()[0];
298 TypeVariable<?> noBoundJvmType =
300 TypeVariable<?> objectBoundJvmType =
302 TypeVariable<?> upperBoundJvmType =
304 TypeVariable<?> noBound = withBounds(noBoundJvmType);
305 TypeVariable<?> objectBound = withBounds(objectBoundJvmType, Object.class);
306 TypeVariable<?> upperBound = withBounds(
336 private static <D extends GenericDeclaration> TypeVariable<D> withBounds(
337 TypeVariable<D> typeVariable, Type... bounds) {
339 typeVariable.getGenericDeclaration(), typeVariable.getName(), bounds);
361 TypeVariable<?> expected, TypeVariable<?> actual) {