Press n or j to go to the next uncovered block, b, p or k for the previous block.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 | /** * Contains the names for the metadata modules. * Recommendation is to add all module names here rather than having them * just use string names. * The naming convention is that the enum has the modules in it, so the * enum key does not repeat the Modules, but the enum value does (to agree * with existing naming conventions) */ enum MetadataModules { CALIBRATION = 'calibrationModule', CINE = 'cineModule', GENERAL_IMAGE = 'generalImageModule', GENERAL_SERIES = 'generalSeriesModule', GENERAL_STUDY = 'generalStudyModule', IMAGE_PIXEL = 'imagePixelModule', IMAGE_PLANE = 'imagePlaneModule', IMAGE_URL = 'imageUrlModule', MODALITY_LUT = 'modalityLutModule', MULTIFRAME = 'multiframeModule', NM_MULTIFRAME_GEOMETRY = 'nmMultiframeGeometryModule', OVERLAY_PLANE = 'overlayPlaneModule', PATIENT = 'patientModule', PATIENT_STUDY = 'patientStudyModule', PET_IMAGE = 'petImageModule', PET_ISOTOPE = 'petIsotopeModule', PET_SERIES = 'petSeriesModule', SOP_COMMON = 'sopCommonModule', ULTRASOUND_ENHANCED_REGION = 'ultrasoundEnhancedRegionModule', VOI_LUT = 'voiLutModule', /** * Some modules need direct access to a web client. This allows getting * it as metadata in order to get it generically. */ WEB_CLIENT = 'webClient', } export default MetadataModules; |