Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 675 for CheckForNull (0.71 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. android/guava/src/com/google/common/collect/ForwardingTable.java

        return delegate().containsValue(value);
      }
    
      @Override
      @CheckForNull
      public V get(@CheckForNull Object rowKey, @CheckForNull Object columnKey) {
        return delegate().get(rowKey, columnKey);
      }
    
      @Override
      public boolean isEmpty() {
        return delegate().isEmpty();
      }
    
      @CanIgnoreReturnValue
      @Override
      @CheckForNull
      public V put(
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 29 19:42:21 UTC 2021
    - 3.9K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/collect/StandardTable.java

      }
    
      private boolean containsMapping(
          @CheckForNull Object rowKey, @CheckForNull Object columnKey, @CheckForNull Object value) {
        return value != null && value.equals(get(rowKey, columnKey));
      }
    
      /** Remove a row key / column key / value mapping, if present. */
      private boolean removeMapping(
          @CheckForNull Object rowKey, @CheckForNull Object columnKey, @CheckForNull Object value) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Oct 13 14:11:58 UTC 2023
    - 29.8K bytes
    - Viewed (0)
  5. 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)
  6. guava/src/com/google/common/collect/SortedMultisets.java

        }
    
        @Override
        @CheckForNull
        public E lower(@ParametricNullness E e) {
          return getElementOrNull(multiset().headMultiset(e, OPEN).lastEntry());
        }
    
        @Override
        @CheckForNull
        public E floor(@ParametricNullness E e) {
          return getElementOrNull(multiset().headMultiset(e, CLOSED).lastEntry());
        }
    
        @Override
        @CheckForNull
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Oct 01 17:18:04 UTC 2021
    - 5.6K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/collect/AbstractMapBasedMultimap.java

        @ParametricNullness final K key;
        Collection<V> delegate;
        @CheckForNull final WrappedCollection ancestor;
        @CheckForNull final Collection<V> ancestorDelegate;
    
        WrappedCollection(
            @ParametricNullness K key,
            Collection<V> delegate,
            @CheckForNull WrappedCollection ancestor) {
          this.key = key;
          this.delegate = delegate;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Oct 13 14:11:58 UTC 2023
    - 46.6K bytes
    - Viewed (0)
  8. guava/src/com/google/common/collect/AbstractMultimap.java

        return size() == 0;
      }
    
      @Override
      public boolean containsValue(@CheckForNull Object value) {
        for (Collection<V> collection : asMap().values()) {
          if (collection.contains(value)) {
            return true;
          }
        }
    
        return false;
      }
    
      @Override
      public boolean containsEntry(@CheckForNull Object key, @CheckForNull Object value) {
        Collection<V> collection = asMap().get(key);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 15 21:08:00 UTC 2021
    - 7.1K bytes
    - Viewed (0)
  9. guava/src/com/google/common/util/concurrent/UncheckedTimeoutException.java

      public UncheckedTimeoutException() {}
    
      public UncheckedTimeoutException(@CheckForNull String message) {
        super(message);
      }
    
      public UncheckedTimeoutException(@CheckForNull Throwable cause) {
        super(cause);
      }
    
      public UncheckedTimeoutException(@CheckForNull String message, @CheckForNull Throwable cause) {
        super(message, cause);
      }
    
      private static final long serialVersionUID = 0;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 04 09:45:04 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/collect/AbstractNavigableMap.java

        extends IteratorBasedAbstractMap<K, V> implements NavigableMap<K, V> {
    
      @Override
      @CheckForNull
      public abstract V get(@CheckForNull Object key);
    
      @Override
      @CheckForNull
      public Entry<K, V> firstEntry() {
        return Iterators.<@Nullable Entry<K, V>>getNext(entryIterator(), null);
      }
    
      @Override
      @CheckForNull
      public Entry<K, V> lastEntry() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Jun 15 18:11:44 UTC 2023
    - 4.5K bytes
    - Viewed (0)
Back to top