Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 1 of 1 for writeExternal (0.19 seconds)

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

                        ArrayMap.this.clear();
                    }
                };
            }
            return (Set<Map.Entry<K, V>>) entrySet;
        }
    
        @Override
        public void writeExternal(final ObjectOutput out) throws IOException {
            out.writeInt(listTable.length);
            out.writeInt(size);
            for (int i = 0; i < size; i++) {
                out.writeObject(listTable[i].key);
    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)
Back to Top