Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 3 of 3 for withTypeVariable (0.06 seconds)

  1. guava-tests/test/com/google/common/reflect/TypesTest.java

              (ParameterizedType)
                  WithTypeVariable.class.getDeclaredMethod(methodName, List.class)
                      .getGenericParameterTypes()[0];
          return (TypeVariable<?>) parameterType.getActualTypeArguments()[0];
        }
      }
    
      public void testNewTypeVariable() throws Exception {
        TypeVariable<?> noBoundJvmType = WithTypeVariable.getTypeVariable("withoutBound");
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Thu Mar 12 17:47:10 GMT 2026
    - 15.5K bytes
    - Click Count (0)
  2. android/guava-tests/test/com/google/common/reflect/TypeTokenResolutionTest.java

        assertEquals(Types.newArrayType(int[].class), listType.getActualTypeArguments()[0]);
      }
    
      private abstract class WithGenericBound<A> {
    
        @Keep
        public <B extends A> void withTypeVariable(List<B> list) {}
    
        @Keep
        public <E extends Enum<E>> void withRecursiveBound(List<E> list) {}
    
        @Keep
        public <K extends List<V>, V extends List<K>> void withMutualRecursiveBound(
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Thu Mar 12 17:47:10 GMT 2026
    - 19.6K bytes
    - Click Count (0)
  3. guava-tests/test/com/google/common/reflect/TypeTokenResolutionTest.java

        assertEquals(Types.newArrayType(int[].class), listType.getActualTypeArguments()[0]);
      }
    
      private abstract class WithGenericBound<A> {
    
        @Keep
        public <B extends A> void withTypeVariable(List<B> list) {}
    
        @Keep
        public <E extends Enum<E>> void withRecursiveBound(List<E> list) {}
    
        @Keep
        public <K extends List<V>, V extends List<K>> void withMutualRecursiveBound(
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Thu Mar 12 17:47:10 GMT 2026
    - 19.6K bytes
    - Click Count (0)
Back to Top