for (int i = 0; i<numBands; i++) {
final PAMRasterBand band = new PAMRasterBand();
final Metadata metadata = new Metadata();
List<MDI> mdiList = metadata.getMDI();
for (MDI mdi: sampleMetadata) {
MDI addedMdi = new MDI();
addedMdi.setKey(mdi.getKey());
mdiList.add(addedMdi);
}
band.setMetadata(metadata);
pamRasterBands.add(band);
}