Package org.glassfish.pfl.basic.contain
Interface IntMap<E>
-
- All Known Implementing Classes:
DenseIntMapImpl
public interface IntMap<E>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Eget(int key)If key >= 0, return the value bound to key, or null if none.voidset(int key, E value)If key >= 0, bind value to the key.
-