comparison JavaSDK/be/uclouvain/orthanc/CreateDicomFlags.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 * Flags to the creation of a DICOM file.
29 **/
30 public enum CreateDicomFlags {
31 /**
32 * Default mode
33 **/
34 NONE(0),
35 /**
36 * Decode fields encoded using data URI scheme
37 **/
38 DECODE_DATA_URI_SCHEME(1),
39 /**
40 * Automatically generate DICOM identifiers
41 **/
42 GENERATE_IDENTIFIERS(2);
43
44 private int value;
45
46 private CreateDicomFlags(int value) {
47 this.value = value;
48 }
49
50 /**
51 * Return the enumeration value that corresponds to an integer value of interest.
52 * @param value The integer value.
53 * @return The enumeration value.
54 **/
55 protected static CreateDicomFlags getInstance(int value) {
56 if (value == 0) {
57 return NONE;
58 }
59 if (value == 1) {
60 return DECODE_DATA_URI_SCHEME;
61 }
62 if (value == 2) {
63 return GENERATE_IDENTIFIERS;
64 }
65
66 throw new IllegalArgumentException("Value out of range for enumeration CreateDicomFlags: " + value);
67 }
68
69 /**
70 * Get the integer value corresponding to this enumeration value.
71 * @return The integer value.
72 **/
73 public int getValue() {
74 return value;
75 }
76 }