Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for getEntryAt (0.85 sec)

  1. src/main/java/org/codelibs/core/collection/ArrayMap.java

         */
        public V getAt(final int index) {
            return getEntryAt(index).getValue();
        }
    
        /**
         * Returns the key at the specified index.
         *
         * @param index
         *            the index
         * @return the key at the specified index
         */
        public K getKeyAt(final int index) {
            return getEntryAt(index).getKey();
        }
    
        /**
    Registered: Sat Dec 20 08:55:33 UTC 2025
    - Last Modified: Sat Nov 22 11:21:59 UTC 2025
    - 20.1K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/core/collection/ArrayMapTest.java

            exception.expect(ClIndexOutOfBoundsException.class);
            exception.expectMessage(is("Index:1, Size:0"));
            ArrayMap<String, String> m = new ArrayMap<String, String>(1);
            m.getEntryAt(1);
        }
    
        /**
         * @throws Exception
         */
        @Test
        public void testSerialize() throws Exception {
            @SuppressWarnings("unchecked")
    Registered: Sat Dec 20 08:55:33 UTC 2025
    - Last Modified: Sat May 10 01:32:17 UTC 2025
    - 10.7K bytes
    - Viewed (0)
Back to top