Class FindQuery


  • public class FindQuery
    extends java.lang.Object
    DICOM C-FIND query
    • Constructor Summary

      Constructors 
      Modifier Constructor Description
      protected FindQuery​(long self)
      Construct a Java object wrapping a C object that is managed by Orthanc.
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      int getFindQuerySize()
      Get the number of tags in a C-Find query.
      java.lang.String getFindQueryTagName​(int index)
      Get the symbolic name of one tag in a C-Find query.
      java.lang.String getFindQueryValue​(int index)
      Get the value associated with one tag in a C-Find query.
      protected long getSelf()
      Return the C object that is associated with this Java wrapper.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • FindQuery

        protected FindQuery​(long self)
        Construct a Java object wrapping a C object that is managed by Orthanc.
        Parameters:
        self - Pointer to the C object.
    • Method Detail

      • getSelf

        protected long getSelf()
        Return the C object that is associated with this Java wrapper.
        Returns:
        Pointer to the C object.
      • getFindQuerySize

        public int getFindQuerySize()
        Get the number of tags in a C-Find query. This function returns the number of tags that are contained in the given C-Find query.
        Returns:
        The number of tags.
      • getFindQueryTagName

        public java.lang.String getFindQueryTagName​(int index)
        Get the symbolic name of one tag in a C-Find query. This function returns the symbolic name of one DICOM tag in the given C-Find query.
        Parameters:
        index - The index of the tag of interest.
        Returns:
        The resulting string.
      • getFindQueryValue

        public java.lang.String getFindQueryValue​(int index)
        Get the value associated with one tag in a C-Find query. This function returns the value associated with one tag in the given C-Find query.
        Parameters:
        index - The index of the tag of interest.
        Returns:
        The resulting string.