Class SoDicomTag

    • Constructor Detail

      • SoDicomTag

        public SoDicomTag​(SoDicomTag copyFrom)
      • SoDicomTag

        public SoDicomTag()
      • SoDicomTag

        public SoDicomTag​(java.lang.String name)
        Create a DICOM tag from its name in the dictionnary. If the name is not in the dictionnary, return a tag with an id of zero.
      • SoDicomTag

        public SoDicomTag​(int id)
        Create a DICOM tag from its 32 bit id.
      • SoDicomTag

        public SoDicomTag​(short group,
                          short element)
        Create a DICOM from its group and element values.
    • Method Detail

      • getGroup

        public short getGroup()
        Get the tag's group.
      • toArray

        public static SoDicomTag[] toArray​(long nativeArray,
                                           long length)
      • setValue

        public void setValue​(SoDicomTag copyFrom)
      • getElement

        public short getElement()
        Get the tag's element.
      • getId

        public int getId()
        Get the tag's id ( group and element combined ).
      • getName

        public java.lang.String getName()
        Returns the tag's name in the dictionary or "Unknown" if not found.
      • getVR

        public SoDicomTag.VRs getVR()
        Get the VR (Visual Representation) associated with this tag in the specification, returning "UN" if the tag is not found.