/**
  * Write the field key (dictionary offset and type) into the BCF2Encoder stream
  *
  * @param encoder where we write our dictionary offset
  * @throws IOException
  */
 public final void writeFieldKey(final BCF2Encoder encoder) throws IOException {
   encoder.encodeTypedInt(dictionaryOffset, dictionaryOffsetType);
 }