Home | History | Annotate | Download | only in reflect

Lines Matching refs:typeVariable

29 import java.lang.reflect.TypeVariable;
450 TypeVariable<?> typeVariable = (TypeVariable<?>)
452 assertEquals(String.class, typeVariable.getBounds()[0]);
456 TypeVariable<?> typeVariable = (TypeVariable<?>)
458 assertEquals(Types.newParameterizedType(Enum.class, typeVariable),
459 typeVariable.getBounds()[0]);
466 TypeVariable<?> k = (TypeVariable<?>) paramType.getActualTypeArguments()[0];
467 TypeVariable<?> v = (TypeVariable<?>) paramType.getActualTypeArguments()[1];