@Override
  public Object get(int index) {
    int code = codeList.getShort(index);
    if (code == 0) return null;

    return dictionary.getValueForCode(code);
  }