Prepare for next CPS-NCMP release
[cps.git] / cps-path-parser / src / main / java / org / onap / cps / cpspath / parser / CpsPathComparativeOperator.java
1 /*\r
2  *  ============LICENSE_START=======================================================\r
3  *  Copyright (C) 2023 Tech Mahindra Ltd\r
4  *  ================================================================================\r
5  *  Licensed under the Apache License, Version 2.0 (the "License");\r
6  *  you may not use this file except in compliance with the License.\r
7  *  You may obtain a copy of the License at\r
8  *\r
9  *        http://www.apache.org/licenses/LICENSE-2.0\r
10  *\r
11  *  Unless required by applicable law or agreed to in writing, software\r
12  *  distributed under the License is distributed on an "AS IS" BASIS,\r
13  *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r
14  *  See the License for the specific language governing permissions and\r
15  *  limitations under the License.\r
16  *\r
17  *  SPDX-License-Identifier: Apache-2.0\r
18  *  ============LICENSE_END=========================================================\r
19  */\r
20 \r
21 package org.onap.cps.cpspath.parser;\r
22 \r
23 import java.util.HashMap;\r
24 import java.util.Map;\r
25 \r
26 public enum CpsPathComparativeOperator {\r
27     EQ("="),\r
28     GT(">"),\r
29     LT("<"),\r
30     GE(">="),\r
31     LE("<=");\r
32 \r
33     private final String label;\r
34 \r
35     CpsPathComparativeOperator(final String label) {\r
36         this.label = label;\r
37     }\r
38 \r
39     public final String getLabel() {\r
40         return this.label;\r
41     }\r
42 \r
43     private static final Map<String, CpsPathComparativeOperator> cpsPathComparativeOperatorPerLabel = new HashMap<>();\r
44 \r
45     static {\r
46         for (final CpsPathComparativeOperator cpsPathComparativeOperator : CpsPathComparativeOperator.values()) {\r
47             cpsPathComparativeOperatorPerLabel.put(cpsPathComparativeOperator.label, cpsPathComparativeOperator);\r
48         }\r
49     }\r
50 \r
51     /**\r
52      * Finds the value of the given enumeration.\r
53      *\r
54      * @param label value of the enum\r
55      * @return a comparativeOperatorType\r
56      */\r
57     public static CpsPathComparativeOperator fromString(final String label) {\r
58         if (!cpsPathComparativeOperatorPerLabel.containsKey(label)) {\r
59             throw new PathParsingException("Incomplete leaf condition (no operator)");\r
60         }\r
61         return cpsPathComparativeOperatorPerLabel.get(label);\r
62     }\r
63 }\r
64 \r