*/
private static KijiCellDecoder<?> createDecoderFromSpec(
final KijiTableLayout layout,
final BoundColumnReaderSpec spec
) throws IOException {
final AvroDecoderType decoderType = spec.getColumnReaderSpec().getAvroDecoderType();
if (null != decoderType) {
switch (decoderType) {
case GENERIC: {
return GenericCellDecoderFactory.get().create(layout, spec);
}