Enum FileInfoBase.Modality

    • Enum Constant Detail

      • BIOMAGNETIC_IMAGING

        public static final FileInfoBase.Modality BIOMAGNETIC_IMAGING
        Image modality biomagnetic imaging.
      • COLOR_FLOW_DOPPLER

        public static final FileInfoBase.Modality COLOR_FLOW_DOPPLER
        Image modality color flow doppler.
      • COMPUTED_RADIOGRAPHY

        public static final FileInfoBase.Modality COMPUTED_RADIOGRAPHY
        Image modality CR.
      • DUPLEX_DOPPLER

        public static final FileInfoBase.Modality DUPLEX_DOPPLER
        Image modality duplex doppler.
      • DIAPHANOGRAPHY

        public static final FileInfoBase.Modality DIAPHANOGRAPHY
        Image modality diaphanography.
      • DIGITAL_RADIOGRAPHY

        public static final FileInfoBase.Modality DIGITAL_RADIOGRAPHY
        Image modality digital radiography.
      • GENERAL_MICROSCOPY

        public static final FileInfoBase.Modality GENERAL_MICROSCOPY
        Image modality general microscopy.
      • INTRAORAL_RADIOGRAPH

        public static final FileInfoBase.Modality INTRAORAL_RADIOGRAPH
        Image modality intraoral radiography.
      • LASER_SURFACE_SCAN

        public static final FileInfoBase.Modality LASER_SURFACE_SCAN
        Image modality laser surface scan.
      • MAGNETIC_RESONANCE_ANGIOGRAPHY

        public static final FileInfoBase.Modality MAGNETIC_RESONANCE_ANGIOGRAPHY
        Image modality MR angiography.
      • MAGNETIC_RESONANCE_SPECTROSCOPY

        public static final FileInfoBase.Modality MAGNETIC_RESONANCE_SPECTROSCOPY
        Image modality MR SPECT.
      • NUCLEAR_MEDICINE

        public static final FileInfoBase.Modality NUCLEAR_MEDICINE
        Image modality nuclear medicine.
      • POSITRON_EMISSION_TOMOGRAPHY

        public static final FileInfoBase.Modality POSITRON_EMISSION_TOMOGRAPHY
        Image modality PET.
      • PANORAMIC_XRAY

        public static final FileInfoBase.Modality PANORAMIC_XRAY
        Image modality panoramtic X ray.
      • RADIO_FLUOROSCOPY

        public static final FileInfoBase.Modality RADIO_FLUOROSCOPY
        Image modality radio fluoroscopy.
      • RADIOGRAPHIC_IMAGING

        public static final FileInfoBase.Modality RADIOGRAPHIC_IMAGING
        Image modality radiographic imaging.
      • RADIOTHERAPY_DOSE

        public static final FileInfoBase.Modality RADIOTHERAPY_DOSE
        Image modality radiotherapy dose.
      • RADIOTHERAPY_IMAGE

        public static final FileInfoBase.Modality RADIOTHERAPY_IMAGE
        Image modality radiotherapy image.
      • RADIOTHERAPY_PLAN

        public static final FileInfoBase.Modality RADIOTHERAPY_PLAN
        Image modality radiotherapy plan.
      • RADIOTHERAPY_RECORD

        public static final FileInfoBase.Modality RADIOTHERAPY_RECORD
        Image modality radiotherapy record.
      • RADIOTHERAPY_STRUCTURE_SET

        public static final FileInfoBase.Modality RADIOTHERAPY_STRUCTURE_SET
        Image modality radiotherapy structure set.
      • SLIDE_MICROSCOPY

        public static final FileInfoBase.Modality SLIDE_MICROSCOPY
        Image modality slide microscopy.
      • SINGLE_PHOTON_EMISSION_COMPUTED_TOMOGRAPHY

        public static final FileInfoBase.Modality SINGLE_PHOTON_EMISSION_COMPUTED_TOMOGRAPHY
        Image modality SPECT.
      • XRAY_ANGIOGRAPHY

        public static final FileInfoBase.Modality XRAY_ANGIOGRAPHY
        Image modality X ray angiography.
      • EXTERNAL_CAMERA_PHOTOGRAPHY

        public static final FileInfoBase.Modality EXTERNAL_CAMERA_PHOTOGRAPHY
        Image modality external camera photography.
    • Field Detail

      • legacyNum

        private int legacyNum
        The legacy number that can be used to reference a modality.
      • printDisp

        private java.lang.String printDisp
        The way this modality will be displayed to the user.
    • Constructor Detail

      • Modality

        private Modality​(int legacyNum,
                         java.lang.String printDisp)
    • Method Detail

      • values

        public static FileInfoBase.Modality[] values()
        Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
        for (FileInfoBase.Modality c : FileInfoBase.Modality.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static FileInfoBase.Modality valueOf​(java.lang.String name)
        Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
        Parameters:
        name - the name of the enum constant to be returned.
        Returns:
        the enum constant with the specified name
        Throws:
        java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
        java.lang.NullPointerException - if the argument is null
      • toString

        public java.lang.String toString()
        Overrides:
        toString in class java.lang.Enum<FileInfoBase.Modality>
      • getLegacyNum

        public int getLegacyNum()