Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for getEntryAt (0.05 seconds)

  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();
        }
    
        /**
    Created: Fri Apr 03 20:58:12 GMT 2026
    - Last Modified: Sat Nov 22 11:21:59 GMT 2025
    - 20.1K bytes
    - Click Count (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")
    Created: Fri Apr 03 20:58:12 GMT 2026
    - Last Modified: Sat May 10 01:32:17 GMT 2025
    - 10.7K bytes
    - Click Count (0)
Back to Top