[SDC-29] Amdocs OnBoard 1707 initial commit.
[sdc.git] / common / openecomp-tosca-datatype / src / main / java / org / openecomp / sdc / tosca / datatypes / model / PropertyType.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * SDC
4  * ================================================================================
5  * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
6  * ================================================================================
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  * 
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  * 
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  * ============LICENSE_END=========================================================
19  */
20
21 package org.openecomp.sdc.tosca.datatypes.model;
22
23 import java.util.Collections;
24 import java.util.HashMap;
25 import java.util.Map;
26
27 public enum PropertyType {
28
29   STRING("string"),
30   INTEGER("integer"),
31   FLOAT("float"),
32   BOOLEAN("boolean"),
33   TIMESTAMP("timestamp"),
34   NULL("null"),
35   MAP("map"),
36   LIST("list"),
37   SCALAR_UNIT_SIZE("scalar-unit.size"),
38   SCALAR_UNIT_FREQUENCY("scalar-unit.frequency");
39
40   private static final Map<String, PropertyType> mMap =
41       Collections.unmodifiableMap(initializeMapping());
42   private String displayName;
43
44   PropertyType(String displayName) {
45
46     this.displayName = displayName;
47   }
48
49   /**
50    * Initilize property type display name mapping.
51    * @return Map
52    */
53   public static Map<String, PropertyType> initializeMapping() {
54     Map<String, PropertyType> typeMap = new HashMap<String, PropertyType>();
55     for (PropertyType v : PropertyType.values()) {
56       typeMap.put(v.displayName, v);
57     }
58     return typeMap;
59   }
60
61   /**
62    * Get Property type by display name.
63    * @param displayName.
64    * @return PropertyType
65    */
66   public static PropertyType getPropertyTypeByDisplayName(String displayName) {
67     if (mMap == null) {
68       initializeMapping();
69     }
70     if (mMap.containsKey(displayName)) {
71       return mMap.get(displayName);
72     }
73     return null;
74   }
75
76   public String getDisplayName() {
77     return displayName;
78   }
79
80
81 }