909192939495969798
} public int itemIndex(long itemID) throws NoSuchItemException { Integer index = itemIDMapping.get(itemID); if (index == null) { throw new NoSuchItemException(itemID); } return index; }