package io.netty.util.collection;

import java.util.Map;

/* JADX INFO: loaded from: classes.dex */
public interface ShortObjectMap<V> extends Map<Short, V> {

    public interface PrimitiveEntry<V> {
        short key();

        void setValue(V v2);

        V value();
    }

    boolean containsKey(short s2);

    Iterable<PrimitiveEntry<V>> entries();

    V get(short s2);

    V put(short s2, V v2);

    V remove(short s2);
}
