Search Options

Results per page
Sort
Preferred Languages
Advance

Results 631 - 640 of 1,961 for isobject (0.07 sec)

  1. ForwardingSortedMap.java

    NoSuchElementException | NullPointerException e) { L139: return false; L140: } L141: } L142: L143: /** L144: * A sensible default implementation of {@link #subMap(Object, Object)} in terms of {@link L145: * #headMap(Object)} and {@link #tailMap(Object)}. In some situations, you may wish to override L146: * {@link #subMap(Object, Object)} to forward to this implementation. L147: * L148: * @since 7.0 L149: */ L150: protected SortedMap<K, V> standardSubMap(K fromKey, K toKey) { L151: ch...
    github.com/google/guava/guava/src/com/google/co...
    Fri May 12 15:26:39 UTC 2023
      5.6K bytes
  2. Objects.java

    java.util.Objects#equals} instead. L52: */ L53: public static boolean equal(@CheckForNull Object a, @CheckForNull Object b) { L54: return a == b || (a != null && a.equals(b)); L55: } L56: L57: /** L58: * Generates a hash code for multiple values. The hash code is generated by calling {@link L59: * Arrays#hashCode(Object[])}. Note that array arguments to this method, with the exception of a L60: * single Object array, do not get any special handling; their hash codes are based on identity L61:...
    github.com/google/guava/guava/src/com/google/co...
    Mon Jul 22 19:03:12 UTC 2024
      3K bytes
  3. ForwardingMultisetTest.java

    } L73: L74: @Override L75: public int count(Object element) { L76: return standardCount(element); L77: } L78: L79: @Override L80: public boolean contains(Object object) { L81: return standardContains(object); L82: } L83: L84: @Override L85: public boolean containsAll(Collection<?> collection) { L86: return standardContainsAll(collection); L87: } L88: L89: @Override L90: public boolean remove(Object object) { L91: return standardRemove(object);...
    github.com/google/guava/guava-tests/test/com/go...
    Sat Oct 19 00:05:46 UTC 2024
      11.8K bytes
  4. HashBiMap.java

    static class InverseEntrySet<K extends @Nullable Object, V extends @Nullable Object> L1040: extends View<K, V, Entry<V, K>> { L1041: InverseEntrySet(HashBiMap<K, V> biMap) { L1042: super(biMap); L1043: } L1044: L1045: @Override L1046: public boolean contains(@CheckForNull Object o) { L1047: if (o instanceof Entry) { L1048: Entry<?, ?> e = (Entry<?, ?>) o; L1049: Object v = e.getKey(); L1050: Object k = e.getValue(); L1051: int eIndex = biMa...
    github.com/google/guava/android/guava/src/com/g...
    Mon Mar 06 16:06:58 UTC 2023
      36.4K bytes
  5. ForwardingTable.java

    delegate().columnMap(); L69: } L70: L71: @Override L72: public boolean contains(@CheckForNull Object rowKey, @CheckForNull Object columnKey) { L73: return delegate().contains(rowKey, columnKey); L74: } L75: L76: @Override L77: public boolean containsColumn(@CheckForNull Object columnKey) { L78: return delegate().containsColumn(columnKey); L79: } L80: L81: @Override L82: public boolean containsRow(@CheckForNull Object rowKey) { L83: return delegate().containsRow(rowKey); L84: } L85: L86: @Override...
    github.com/google/guava/guava/src/com/google/co...
    Tue Jun 29 19:42:21 UTC 2021
      3.9K bytes
  6. CollectCollectors.java

    as a test) L48:final class CollectCollectors { L49: L50: private static final Collector<Object, ?, ImmutableList<Object>> TO_IMMUTABLE_LIST = L51: Collector.of( L52: ImmutableList::builder, L53: ImmutableList.Builder::add, L54: ImmutableList.Builder::combine, L55: ImmutableList.Builder::build); L56: L57: private static final Collector<Object, ?, ImmutableSet<Object>> TO_IMMUTABLE_SET = L58: Collector.of( L59: ImmutableSet::builder, L60: ...
    github.com/google/guava/android/guava/src/com/g...
    Sat Oct 19 00:05:46 UTC 2024
      17.1K bytes
  7. GroupTests.java

    return LIST_ENDPOINT_SUFFIX; L59: } L60: L61: @Override L62: protected String getItemEndpointSuffix() { L63: return ITEM_ENDPOINT_SUFFIX; L64: } L65: L66: @Override L67: protected Map<String, Object> createTestParam(int id) { L68: final Map<String, Object> requestBody = new HashMap<>(); L69: final String keyProp = NAME_PREFIX + id; L70: requestBody.put(KEY_PROPERTY, keyProp); L71: final Map<String, String> attributes = new HashMap<>(); L72: ...
    github.com/codelibs/fess/src/test/java/org/code...
    Thu Feb 22 01:37:57 UTC 2024
      3.2K bytes
  8. ForwardingSortedSetMultimap.java

    ForwardingSortedSetMultimap}. L33: * L34: * @author Kurt Alfred Kluever L35: * @since 3.0 L36: */ L37:@GwtCompatible L38:@ElementTypesAreNonnullByDefault L39:public abstract class ForwardingSortedSetMultimap< L40: K extends @Nullable Object, V extends @Nullable Object> L41: extends ForwardingSetMultimap<K, V> implements SortedSetMultimap<K, V> { L42: L43: /** Constructor for use by subclasses. */ L44: protected ForwardingSortedSetMultimap() {} L45: L46: @Override L47: protected abstract SortedSetMultimap<K,...
    github.com/google/guava/android/guava/src/com/g...
    Tue Jun 15 21:08:00 UTC 2021
      2.3K bytes
  9. RemovalListener.java

    performing blocking calls or synchronizing on L26: * shared resources. L27: * L28: * @param <K> the most general type of keys this listener can listen for; for example {@code Object} L29: * if any key is acceptable L30: * @param <V> the most general type of values this listener can listen for; for example {@code L31: * Object} if any key is acceptable L32: * @author Charles Fry L33: * @since 10.0 L34: */ L35:@GwtCompatible L36:@ElementTypesAreNonnullByDefault L37:public interface RemovalListener<K,...
    github.com/google/guava/android/guava/src/com/g...
    Tue Jun 15 18:00:07 UTC 2021
      2K bytes
  10. SingletonImmutableSet.java

    L43: SingletonImmutableSet(E element) { L44: this.element = Preconditions.checkNotNull(element); L45: } L46: L47: @Override L48: public int size() { L49: return 1; L50: } L51: L52: @Override L53: public boolean contains(@CheckForNull Object target) { L54: return element.equals(target); L55: } L56: L57: @Override L58: public UnmodifiableIterator<E> iterator() { L59: return singletonIterator(element); L60: } L61: L62: @Override L63: public ImmutableList<E> asList() { L64: ...
    github.com/google/guava/guava/src/com/google/co...
    Wed Oct 30 16:15:19 UTC 2024
      2.6K bytes
Back to top