Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 265 for CheckForNull (0.18 sec)

  1. guava/src/com/google/common/collect/Synchronized.java

          extends SynchronizedObject implements Multimap<K, V> {
        @CheckForNull transient Set<K> keySet;
        @CheckForNull transient Collection<V> valuesCollection;
        @CheckForNull transient Collection<Map.Entry<K, V>> entries;
        @CheckForNull transient Map<K, Collection<V>> asMap;
        @CheckForNull transient Multiset<K> keys;
    
        @SuppressWarnings("unchecked")
        @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 57.3K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/collect/Synchronized.java

          extends SynchronizedObject implements Multimap<K, V> {
        @CheckForNull transient Set<K> keySet;
        @CheckForNull transient Collection<V> valuesCollection;
        @CheckForNull transient Collection<Map.Entry<K, V>> entries;
        @CheckForNull transient Map<K, Collection<V>> asMap;
        @CheckForNull transient Multiset<K> keys;
    
        @SuppressWarnings("unchecked")
        @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 53.4K bytes
    - Viewed (0)
  3. guava/src/com/google/common/base/Preconditions.java

       * @since 20.0 (varargs overload since 2.0)
       */
      @CanIgnoreReturnValue
      public static <T> T checkNotNull(
          @CheckForNull T reference,
          String errorMessageTemplate,
          @CheckForNull Object p1,
          @CheckForNull Object p2,
          @CheckForNull Object p3,
          @CheckForNull Object p4) {
        if (reference == null) {
          throw new NullPointerException(lenientFormat(errorMessageTemplate, p1, p2, p3, p4));
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Apr 11 11:52:14 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  4. guava/src/com/google/common/graph/DirectedGraphConnections.java

       * not have been inserted consecutively.
       */
      @CheckForNull private final List<NodeConnection<N>> orderedNodeConnections;
    
      private int predecessorCount;
      private int successorCount;
    
      private DirectedGraphConnections(
          Map<N, Object> adjacentNodeValues,
          @CheckForNull List<NodeConnection<N>> orderedNodeConnections,
          int predecessorCount,
          int successorCount) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 20 17:00:05 UTC 2024
    - 18K bytes
    - Viewed (0)
  5. guava/src/com/google/common/collect/CollectSpliterators.java

          OutSpliteratorT newFlatMapSpliterator(
              @CheckForNull OutSpliteratorT prefix,
              Spliterator<InElementT> fromSplit,
              Function<? super InElementT, @Nullable OutSpliteratorT> function,
              int splitCharacteristics,
              long estSplitSize);
        }
    
        @Weak @CheckForNull OutSpliteratorT prefix;
        final Spliterator<InElementT> from;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 22 18:19:31 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  6. guava/src/com/google/common/collect/ImmutableMapEntry.java

         * in the value bucket (or vice versa).
         */
        @CheckForNull private final transient ImmutableMapEntry<K, V> nextInKeyBucket;
    
        NonTerminalImmutableMapEntry(
            K key, V value, @CheckForNull ImmutableMapEntry<K, V> nextInKeyBucket) {
          super(key, value);
          this.nextInKeyBucket = nextInKeyBucket;
        }
    
        @Override
        @CheckForNull
        final ImmutableMapEntry<K, V> getNextInKeyBucket() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/graph/StandardValueGraph.java

      }
    
      @Override
      @CheckForNull
      public V edgeValueOrDefault(N nodeU, N nodeV, @CheckForNull V defaultValue) {
        return edgeValueOrDefaultInternal(checkNotNull(nodeU), checkNotNull(nodeV), defaultValue);
      }
    
      @Override
      @CheckForNull
      public V edgeValueOrDefault(EndpointPair<N> endpoints, @CheckForNull V defaultValue) {
        validateEndpoints(endpoints);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jan 22 17:29:38 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  8. guava/src/com/google/common/collect/Tables.java

        }
    
        @Override
        public boolean containsValue(@CheckForNull Object value) {
          return original.containsValue(value);
        }
    
        @Override
        @CheckForNull
        public V get(@CheckForNull Object rowKey, @CheckForNull Object columnKey) {
          return original.get(columnKey, rowKey);
        }
    
        @Override
        @CheckForNull
        public V put(
            @ParametricNullness C rowKey,
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Mar 04 22:45:41 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/collect/ArrayTable.java

          };
        }
    
        // TODO(lowasser): consider an optimized values() implementation
    
        @Override
        public boolean containsKey(@CheckForNull Object key) {
          return keyIndex.containsKey(key);
        }
    
        @CheckForNull
        @Override
        public V get(@CheckForNull Object key) {
          Integer index = keyIndex.get(key);
          if (index == null) {
            return null;
          } else {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/collect/RegularImmutableSortedSet.java

          throw new NoSuchElementException();
        }
        return elements.get(size() - 1);
      }
    
      @Override
      @CheckForNull
      public E lower(E element) {
        int index = headIndex(element, false) - 1;
        return (index == -1) ? null : elements.get(index);
      }
    
      @Override
      @CheckForNull
      public E floor(E element) {
        int index = headIndex(element, true) - 1;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 9K bytes
    - Viewed (0)
Back to top