Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for typedef (0.23 sec)

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

        TypeToken<?>.TypeSet types = TypeToken.of(new TypeCapture<A>() {}.capture()).getTypes();
        makeUnmodifiable(types.rawTypes())
            .containsExactly(Interface1.class, Interface2.class, Interface3.class, Iterable.class);
      }
    
      private static void assertSubtypeFirst(TypeToken<?>.TypeSet types) {
        assertSubtypeTokenBeforeSupertypeToken(types);
    Java
    - Registered: Fri Apr 12 12:43:09 GMT 2024
    - Last Modified: Thu Feb 22 17:15:24 GMT 2024
    - 88.7K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/collect/MapMakerInternalMap.java

        /** Returns a freshly created segment, typed at the {@code S} type. */
        S newSegment(MapMakerInternalMap<K, V, E, S> map, int initialCapacity);
    
        /**
         * Returns a freshly created entry, typed at the {@code E} type, for the given {@code segment}.
         */
        E newEntry(S segment, K key, int hash, @CheckForNull E next);
    
        /**
         * Returns a freshly created entry, typed at the {@code E} type, for the given {@code segment},
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Mon Apr 01 16:15:01 GMT 2024
    - 91.9K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/reflect/TypeToken.java

       *
       * @since 13.0
       */
      public class TypeSet extends ForwardingSet<TypeToken<? super T>> implements Serializable {
    
        @CheckForNull private transient ImmutableSet<TypeToken<? super T>> types;
    
        TypeSet() {}
    
        /** Returns the types that are interfaces implemented by this type. */
        public TypeSet interfaces() {
          return new InterfaceSet(this);
        }
    
    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)
  4. android/guava/src/com/google/common/collect/Multimaps.java

        return (Map<K, SortedSet<V>>) (Map<K, ?>) multimap.asMap();
      }
    
      /**
       * Returns {@link Multimap#asMap multimap.asMap()}. This is provided for parity with the other
       * more strongly-typed {@code asMap()} implementations.
       *
       * @since 15.0
       */
      public static <K extends @Nullable Object, V extends @Nullable Object>
          Map<K, Collection<V>> asMap(Multimap<K, V> multimap) {
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Wed May 01 18:44:57 GMT 2024
    - 86.4K bytes
    - Viewed (0)
  5. android/guava-tests/test/com/google/common/reflect/TypeTokenTest.java

        TypeToken<?>.TypeSet types = TypeToken.of(new TypeCapture<A>() {}.capture()).getTypes();
        makeUnmodifiable(types.rawTypes())
            .containsExactly(Interface1.class, Interface2.class, Interface3.class, Iterable.class);
      }
    
      private static void assertSubtypeFirst(TypeToken<?>.TypeSet types) {
        assertSubtypeTokenBeforeSupertypeToken(types);
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Thu Feb 22 17:15:24 GMT 2024
    - 88.7K bytes
    - Viewed (0)
Back to top