comparison JavaSDK/be/uclouvain/orthanc/FindQuery.java @ 0:3ecef5782f2c

initial commit
author Sebastien Jodogne <s.jodogne@gmail.com>
date Wed, 18 Oct 2023 17:59:44 +0200
parents
children 26c08ff926a3
comparison
equal deleted inserted replaced
-1:000000000000 0:3ecef5782f2c
1 package be.uclouvain.orthanc;
2
3 /**
4 * SPDX-FileCopyrightText: 2023 Sebastien Jodogne, UCLouvain, Belgium
5 * SPDX-License-Identifier: GPL-3.0-or-later
6 */
7
8 /**
9 * Java plugin for Orthanc
10 * Copyright (C) 2023 Sebastien Jodogne, UCLouvain, Belgium
11 *
12 * This program is free software: you can redistribute it and/or
13 * modify it under the terms of the GNU General Public License as
14 * published by the Free Software Foundation, either version 3 of the
15 * License, or (at your option) any later version.
16 *
17 * This program is distributed in the hope that it will be useful, but
18 * WITHOUT ANY WARRANTY; without even the implied warranty of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
20 * General Public License for more details.
21 *
22 * You should have received a copy of the GNU General Public License
23 * along with this program. If not, see http://www.gnu.org/licenses/.
24 **/
25
26
27 /**
28 * DICOM C-FIND query
29 **/
30 public class FindQuery {
31 private long self;
32
33 /**
34 * Construct a Java object wrapping a C object that is managed by Orthanc.
35 * @param self Pointer to the C object.
36 **/
37 protected FindQuery(long self) {
38 if (self == 0) {
39 throw new IllegalArgumentException("Null pointer");
40 } else {
41 this.self = self;
42 }
43 }
44
45 /**
46 * Return the C object that is associated with this Java wrapper.
47 * @return Pointer to the C object.
48 **/
49 protected long getSelf() {
50 return self;
51 }
52
53
54
55 /**
56 * Get the number of tags in a C-Find query.
57 *
58 * This function returns the number of tags that are contained in the given C-Find
59 * query.
60 *
61 * @return The number of tags.
62 **/
63 public int getFindQuerySize() {
64 return NativeSDK.OrthancPluginGetFindQuerySize(self);
65 }
66
67 /**
68 * Get the symbolic name of one tag in a C-Find query.
69 *
70 * This function returns the symbolic name of one DICOM tag in the given C-Find
71 * query.
72 *
73 * @param index The index of the tag of interest.
74 * @return The resulting string.
75 **/
76 public String getFindQueryTagName(
77 int index) {
78 return NativeSDK.OrthancPluginGetFindQueryTagName(self, index);
79 }
80
81 /**
82 * Get the value associated with one tag in a C-Find query.
83 *
84 * This function returns the value associated with one tag in the given C-Find
85 * query.
86 *
87 * @param index The index of the tag of interest.
88 * @return The resulting string.
89 **/
90 public String getFindQueryValue(
91 int index) {
92 return NativeSDK.OrthancPluginGetFindQueryValue(self, index);
93 }
94
95 }