private final Converter converter;
public WritableTableType(WritableType<K, Writable> keyType, WritableType<V, Writable> valueType) {
this.keyType = keyType;
this.valueType = valueType;
this.inputFn = new PairMapFn(keyType.getInputMapFn(), valueType.getInputMapFn());
this.outputFn = new PairMapFn(keyType.getOutputMapFn(), valueType.getOutputMapFn());
this.converter = new WritablePairConverter(keyType.getSerializationClass(),
valueType.getSerializationClass());
}