Catalog alignment
[sdc.git] / catalog-model / src / main / java / org / openecomp / sdc / be / model / tosca / constraints / ConstraintType.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.be.model.tosca.constraints;
22
23 import java.util.Arrays;
24 import java.util.List;
25
26 public enum ConstraintType {
27
28         EQUAL("equal", "equal"),
29
30     IN_RANGE("inRange", "in_range"),
31
32     GREATER_THAN("greaterThan", "greater_than"),
33
34     GREATER_OR_EQUAL("greaterOrEqual", "greater_or_equal"),
35
36     LESS_OR_EQUAL("lessOrEqual", "less_or_equal"),
37
38     LENGTH("length", "length"),
39
40     MIN_LENGTH("minLength", "min_length"),
41
42     MAX_LENGTH("maxLength", "max_length"),
43
44     VALID_VALUES("validValues", "valid_values"),
45
46     LESS_THAN("lessThan", "less_than"),
47
48     SCHEMA("schema", "schema");
49
50     List<String> types;
51
52     private ConstraintType(String... types) {
53         this.types = Arrays.asList(types);
54     }
55
56     public List<String> getTypes() {
57         return types;
58     }
59
60     public static ConstraintType getByType(String type) {
61         for (ConstraintType inst : ConstraintType.values()) {
62             if (inst.getTypes().contains(type)) {
63                 return inst;
64             }
65         }
66         return null;
67     }
68 }