Merge "[CPS] Re-structuring the packages for better understanding"
[cps.git] / cps-path-parser / src / main / java / org / onap / cps / cpspath / parser / CpsPathBooleanOperatorType.java
1 /*\r
2  *  ============LICENSE_START=======================================================\r
3  *  Copyright (C) 2023 TechMahindra 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 public enum CpsPathBooleanOperatorType {\r
24     AND("and"),\r
25     OR("or");\r
26 \r
27     private final String operatorValue;\r
28 \r
29     CpsPathBooleanOperatorType(final String operatorValue) {\r
30         this.operatorValue = operatorValue;\r
31     }\r
32 \r
33     public String getValues() {\r
34         return this.operatorValue;\r
35     }\r
36 \r
37     /**\r
38      * Finds the value of the given enumeration.\r
39      *\r
40      * @param operatorValue value of the enum\r
41      * @return a booleanOperatorType\r
42      */\r
43     public static CpsPathBooleanOperatorType fromString(final String operatorValue) {\r
44         for (final CpsPathBooleanOperatorType booleanOperatorType : CpsPathBooleanOperatorType.values()) {\r
45             if (booleanOperatorType.operatorValue.equalsIgnoreCase(operatorValue)) {\r
46                 return booleanOperatorType;\r
47             }\r
48         }\r
49         return null;\r
50     }\r
51 }\r