Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for TypeVariableKey (0.47 sec)

  1. android/guava/src/com/google/common/reflect/TypeResolver.java

          if (obj instanceof TypeVariableKey) {
            TypeVariableKey that = (TypeVariableKey) obj;
            return equalsTypeVariable(that.var);
          } else {
            return false;
          }
        }
    
        @Override
        public String toString() {
          return var.toString();
        }
    
        /** Wraps {@code t} in a {@code TypeVariableKey} if it's a type variable. */
        @CheckForNull
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Mon Oct 10 19:45:10 GMT 2022
    - 24.2K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/reflect/TypeToken.java

        TypeResolver resolver =
            new TypeResolver()
                .where(
                    ImmutableMap.of(
                        new TypeResolver.TypeVariableKey(typeParam.typeVariable), typeArg.runtimeType));
        // If there's any type error, we'd report now rather than later.
        return new SimpleTypeToken<>(resolver.resolveType(runtimeType));
      }
    
      /**
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Mon Jun 26 21:02:13 GMT 2023
    - 53.6K bytes
    - Viewed (0)
Back to top