Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for getGenericDeclaration (0.09 sec)

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

        assertEquals(expected.toString(), actual.toString());
        assertEquals(expected.getName(), actual.getName());
        assertEquals(expected.getGenericDeclaration(), actual.getGenericDeclaration());
        if (!Types.NativeTypeVariableEquals.NATIVE_TYPE_VARIABLE_ONLY) {
          assertEquals(actual.toString(), expected.hashCode(), actual.hashCode());
        }
        assertThat(actual.getBounds())
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Thu Oct 17 13:41:27 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  2. guava-tests/test/com/google/common/reflect/TypesTest.java

        assertEquals(expected.toString(), actual.toString());
        assertEquals(expected.getName(), actual.getName());
        assertEquals(expected.getGenericDeclaration(), actual.getGenericDeclaration());
        if (!Types.NativeTypeVariableEquals.NATIVE_TYPE_VARIABLE_ONLY) {
          assertEquals(actual.toString(), expected.hashCode(), actual.hashCode());
        }
        assertThat(actual.getBounds())
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Thu Oct 17 13:41:27 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  3. guava/src/com/google/common/reflect/Types.java

          this.name = checkNotNull(name);
          this.bounds = ImmutableList.copyOf(bounds);
        }
    
        public Type[] getBounds() {
          return toArray(bounds);
        }
    
        public D getGenericDeclaration() {
          return genericDeclaration;
        }
    
        public String getName() {
          return name;
        }
    
        public String getTypeName() {
          return name;
        }
    
        @Override
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Mon Oct 21 14:28:19 UTC 2024
    - 23K bytes
    - Viewed (0)
Back to top