Added oparent to sdc main
[sdc.git] / asdctool / src / main / java / org / openecomp / sdc / asdctool / impl / validator / utils / ElementTypeEnum.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * SDC
4  * ================================================================================
5  * Copyright (C) 2019 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.asdctool.impl.validator.utils;
22
23 import org.openecomp.sdc.asdctool.impl.validator.executers.VfValidatorExecuter;
24
25 import java.util.ArrayList;
26 import java.util.List;
27
28 /**
29  * Created by chaya on 7/4/2017.
30  */
31 public enum ElementTypeEnum {
32
33     VF ("vf", VfValidatorExecuter.class);
34     //SERVICE("service", ServiceValidatorExecuter.class)
35
36     private String elementType;
37     private Class clazz;
38
39     ElementTypeEnum(String elementType, Class clazz) {
40        this. elementType = elementType;
41        this.clazz = clazz;
42     }
43
44     public static ElementTypeEnum getByType(String elementType){
45         for(ElementTypeEnum currType :ElementTypeEnum.values()){
46             if(currType.getElementType().equals(elementType)){
47                 return currType;
48             }
49         }
50         return null;
51     }
52
53     public static List<String> getAllTypes() {
54
55         List<String> arrayList = new ArrayList<String>();
56
57         for (ElementTypeEnum graphType : ElementTypeEnum.values()) {
58             arrayList.add(graphType.getElementType());
59         }
60         return arrayList;
61     }
62
63
64     public String getElementType() {
65         return elementType;
66     }
67
68     public void setElementType(String elementType) {
69         this.elementType = elementType;
70     }
71
72     public Class getClazz() {
73         return clazz;
74     }
75
76     public void setClazz(Class clazz) {
77         this.clazz = clazz;
78     }
79 }