public class IntMap extends Object
Modifier and Type | Method and Description |
---|---|
int |
capacity() |
void |
clear() |
boolean |
contains(int k) |
Object |
get(int k) |
Object |
getNextAdjacent(int k)
A bit of an aberration from an academic point of view,
but since this is an ordered Map, why not!
|
Iterator<Map.Entry<Integer,Object>> |
iterator() |
int[] |
keySetToArray() |
Object |
put(int k,
Object v) |
Object |
remove(int k) |
int |
size() |
Object[] |
valuesToArray(Object[] ar) |
public int capacity()
public Object remove(int k)
public void clear()
public Object get(int k)
public boolean contains(int k)
public Object getNextAdjacent(int k)
public int size()
public int[] keySetToArray()
Copyright © 2016 The Apache Software Foundation. All rights reserved.