Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 675 for CheckForNull (0.17 sec)

  1. android/guava/src/com/google/common/base/Verify.java

       *
       * @since 23.1 (varargs overload since 17.0)
       */
      public static void verify(
          boolean expression,
          String errorMessageTemplate,
          @CheckForNull Object p1,
          @CheckForNull Object p2,
          @CheckForNull Object p3,
          @CheckForNull Object p4) {
        if (!expression) {
          throw new VerifyException(lenientFormat(errorMessageTemplate, p1, p2, p3, p4));
        }
      }
    
      /*
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon May 17 14:07:47 UTC 2021
    - 18.5K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/cache/LocalCache.java

        int nextSegmentIndex;
        int nextTableIndex;
        @CheckForNull Segment<K, V> currentSegment;
        @CheckForNull AtomicReferenceArray<ReferenceEntry<K, V>> currentTable;
        @CheckForNull ReferenceEntry<K, V> nextEntry;
        @CheckForNull WriteThroughEntry nextExternal;
        @CheckForNull WriteThroughEntry lastReturned;
    
        HashIterator() {
          nextSegmentIndex = segments.length - 1;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 143.6K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/collect/Table.java

       */
      boolean contains(
          @CompatibleWith("R") @CheckForNull Object rowKey,
          @CompatibleWith("C") @CheckForNull Object columnKey);
    
      /**
       * Returns {@code true} if the table contains a mapping with the specified row key.
       *
       * @param rowKey key of row to search for
       */
      boolean containsRow(@CompatibleWith("R") @CheckForNull Object rowKey);
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat Jun 17 14:40:53 UTC 2023
    - 10.7K bytes
    - Viewed (0)
  4. guava/src/com/google/common/collect/GeneralRange.java

      private final boolean hasLowerBound;
      @CheckForNull private final T lowerEndpoint;
      private final BoundType lowerBoundType;
      private final boolean hasUpperBound;
      @CheckForNull private final T upperEndpoint;
      private final BoundType upperBoundType;
    
      private GeneralRange(
          Comparator<? super T> comparator,
          boolean hasLowerBound,
          @CheckForNull T lowerEndpoint,
          BoundType lowerBoundType,
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/collect/UnmodifiableSortedMultiset.java

          return descendingMultiset = result;
        }
        return result;
      }
    
      @Override
      @CheckForNull
      public Entry<E> firstEntry() {
        return delegate().firstEntry();
      }
    
      @Override
      @CheckForNull
      public Entry<E> lastEntry() {
        return delegate().lastEntry();
      }
    
      @Override
      @CheckForNull
      public Entry<E> pollFirstEntry() {
        throw new UnsupportedOperationException();
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 26 21:02:13 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  6. guava/src/com/google/common/collect/UnmodifiableSortedMultiset.java

          return descendingMultiset = result;
        }
        return result;
      }
    
      @Override
      @CheckForNull
      public Entry<E> firstEntry() {
        return delegate().firstEntry();
      }
    
      @Override
      @CheckForNull
      public Entry<E> lastEntry() {
        return delegate().lastEntry();
      }
    
      @Override
      @CheckForNull
      public Entry<E> pollFirstEntry() {
        throw new UnsupportedOperationException();
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 26 21:02:13 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  7. guava/src/com/google/common/collect/SingletonImmutableBiMap.java

        this.singleKey = singleKey;
        this.singleValue = singleValue;
        this.inverse = inverse;
      }
    
      @Override
      @CheckForNull
      public V get(@CheckForNull Object key) {
        return singleKey.equals(key) ? singleValue : null;
      }
    
      @Override
      public int size() {
        return 1;
      }
    
      @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Nov 30 21:54:06 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/collect/ForwardingMap.java

      @CanIgnoreReturnValue
      @Override
      @CheckForNull
      public V remove(@CheckForNull Object key) {
        return delegate().remove(key);
      }
    
      @Override
      public void clear() {
        delegate().clear();
      }
    
      @Override
      public boolean containsKey(@CheckForNull Object key) {
        return delegate().containsKey(key);
      }
    
      @Override
      public boolean containsValue(@CheckForNull Object value) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 12 15:26:39 UTC 2023
    - 9.9K bytes
    - Viewed (0)
  9. android/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)
  10. guava/src/com/google/common/collect/FilteredEntryMultimap.java

        @Override
        public boolean containsKey(@CheckForNull Object key) {
          return get(key) != null;
        }
    
        @Override
        public void clear() {
          FilteredEntryMultimap.this.clear();
        }
    
        @Override
        @CheckForNull
        public Collection<V> get(@CheckForNull Object key) {
          Collection<V> result = unfiltered.asMap().get(key);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 24 19:38:27 UTC 2024
    - 11.9K bytes
    - Viewed (0)
Back to top