Package be.uclouvain.orthanc
Class FindQuery
- java.lang.Object
-
- be.uclouvain.orthanc.FindQuery
-
public class FindQuery extends java.lang.ObjectDICOM C-FIND query
-
-
Constructor Summary
Constructors Modifier Constructor Description protectedFindQuery(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 intgetFindQuerySize()Get the number of tags in a C-Find query.java.lang.StringgetFindQueryTagName(int index)Get the symbolic name of one tag in a C-Find query.java.lang.StringgetFindQueryValue(int index)Get the value associated with one tag in a C-Find query.protected longgetSelf()Return the C object that is associated with this Java wrapper.
-
-
-
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.
-
-