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