break;
case SHIPMENT_IDENTIFICATION_NUMBER:
bc = BarcodeFactory.createShipmentIdentificationNumber(text);
break;
case UCCEAN128_00:
bc = new UCCEAN128Barcode("00", text, checkSum);
break;
case STD_2_OF_5:
bc = BarcodeFactory.createStd2of5(text, checkSum);
break;
case UCCEAN128:
if (applicationIdentifier == null)
applicationIdentifier = "";
bc = new UCCEAN128Barcode(applicationIdentifier.toString(), text, checkSum);
break;
case UPCA:
bc = BarcodeFactory.createUPCA(text);
break;
case USD3: