001package org.dcm4che3.net; 002 003/** 004 * Represents a type of device. 005 * This list is composed of code values 006 * (0008,0100) for Context ID 30 in PS3.16 007 * 008 * @author Roman K 009 */ 010public enum DeviceType { 011 012 /** 013 * Cardiac Electrophys 014 */ 015 EPS, 016 /** 017 * Computed Radiography 018 */ 019 CR, 020 /** 021 * Computed Tomography 022 */ 023 CT, 024 /** 025 * Digital Radiography 026 */ 027 DX, 028 /** 029 * Electrocardiography 030 */ 031 ECG, 032 /** 033 * Endoscopy 034 */ 035 ES, 036 /** 037 * External-camera Photography 038 */ 039 XC, 040 /** 041 * General Microscopy 042 */ 043 GM, 044 /** 045 * Hemodynamic Waveform 046 */ 047 HD, 048 /** 049 * Intra-oral Radiography 050 */ 051 IO, 052 /** 053 * Intravascular Ultrasound 054 */ 055 IVUS, 056 /** 057 * Magnetic Resonance 058 */ 059 MR, 060 /** 061 * Mammography 062 */ 063 MG, 064 /** 065 * Nuclear Medicine 066 */ 067 NM, 068 /** 069 * Ophthalmic Photography 070 */ 071 OP, 072 /** 073 * Panoramic X-Ray 074 */ 075 PX, 076 /** 077 * Positron emission tomography 078 */ 079 PT, 080 /** 081 * Radiofluoroscopy 082 */ 083 RF, 084 /** 085 * Radiographic imaging 086 */ 087 RG, 088 /** 089 * Radiotherapy Image 090 */ 091 RTIMAGE, 092 /** 093 * Slide Microscopy 094 */ 095 SM, 096 /** 097 * Ultrasound 098 */ 099 US, 100 /** 101 * X-Ray Angiog 102 */ 103 XA, 104 /** 105 * Archive 106 */ 107 ARCHIVE, 108 /** 109 * Computation Server 110 */ 111 COMP, 112 /** 113 * Computer Assisted Detection/Diagnosis 114 */ 115 CAD, 116 /** 117 * Department System Scheduler 118 */ 119 DSS, 120 /** 121 * Film Digitizer 122 */ 123 FILMD, 124 /** 125 * Media Creation Device 126 */ 127 MCD, 128 /** 129 * Hard Copy Print Server 130 */ 131 PRINT, 132 /** 133 * Image Capture 134 */ 135 CAPTURE, 136 /** 137 * Procedure Logging 138 */ 139 LOG, 140 /** 141 * Radiation Therapy Device 142 */ 143 RT, 144 /** 145 * Workstation 146 */ 147 WSD 148}