Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 56 of 56 for getElements (0.1 sec)

  1. android/guava-testlib/src/com/google/common/collect/testing/google/UnmodifiableCollectionTests.java

            multiset.entrySet(),
            new Multiset.Entry<E>() {
              @Override
              public int getCount() {
                return 1;
              }
    
              @Override
              public E getElement() {
                return sampleElement;
              }
            });
        assertCollectionsAreEquivalent(multiset, copy);
      }
    
      /**
       * Verifies that a multimap is immutable.
       *
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Oct 30 16:15:19 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/core/collection/SLinkedList.java

                this.next = next;
                this.previous = previous;
            }
    
            /**
             * 要素を返します。
             *
             * @return 要素
             */
            public E getElement() {
                return element;
            }
    
            /**
             * 次のエントリを返します。
             *
             * @return 次のエントリ
             */
            public Entry getNext() {
    Registered: Fri Nov 01 20:58:10 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 11K bytes
    - Viewed (0)
  3. guava-testlib/src/com/google/common/collect/testing/google/UnmodifiableCollectionTests.java

            multiset.entrySet(),
            new Multiset.Entry<E>() {
              @Override
              public int getCount() {
                return 1;
              }
    
              @Override
              public E getElement() {
                return sampleElement;
              }
            });
        assertCollectionsAreEquivalent(multiset, copy);
      }
    
      /**
       * Verifies that a multimap is immutable.
       *
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Oct 30 16:15:19 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  4. guava-tests/test/com/google/common/collect/ImmutableMultisetTest.java

        CollectorTester.of(
                ImmutableMultiset.<Multiset.Entry<String>, String>toImmutableMultiset(
                    Multiset.Entry::getElement, Multiset.Entry::getCount),
                equivalence)
            .expectCollects(ImmutableMultiset.of())
            .expectCollects(
                ImmutableMultiset.of("a", "a", "b", "c", "c", "c"),
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Oct 30 16:15:19 UTC 2024
    - 24.9K bytes
    - Viewed (0)
  5. test-site/activator-launch-1.3.2.jar

    ManifestHeaderValue.class package org.apache.ivy.osgi.core; public final synchronized class ManifestHeaderValue { private java.util.List elements; void ManifestHeaderValue(); public void ManifestHeaderValue(String); public final java.util.List getElements(); public final String getSingleValue(); public final java.util.List getValues(); final void addElement(ManifestHeaderElemen); public final boolean equals(Object); public final String toString(); } org/apache/ivy/osgi/core/BundleInfoAdapter.class...
    Registered: Fri Nov 08 09:08:12 UTC 2024
    - Last Modified: Mon Apr 20 08:41:37 UTC 2015
    - 1.2M bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/collect/Multimaps.java

            Multiset.Entry<K> transform(final Map.Entry<K, Collection<V>> backingEntry) {
              return new Multisets.AbstractEntry<K>() {
                @Override
                @ParametricNullness
                public K getElement() {
                  return backingEntry.getKey();
                }
    
                @Override
                public int getCount() {
                  return backingEntry.getValue().size();
                }
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Oct 16 21:21:17 UTC 2024
    - 86.3K bytes
    - Viewed (0)
Back to top