AAI-1523 Batch reformat aai-core
[aai/aai-common.git] / aai-core / src / main / java / org / onap / aai / restcore / MediaType.java
1 /**
2  * ============LICENSE_START=======================================================
3  * org.onap.aai
4  * ================================================================================
5  * Copyright © 2017-2018 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.onap.aai.restcore;
22
23 /**
24  * The Enum MediaType.
25  */
26 public enum MediaType {
27     APPLICATION_JSON_TYPE("application/json"), APPLICATION_XML_TYPE("application/xml");
28
29     private final String text;
30
31     /**
32      * Instantiates a new media type.
33      *
34      * @param text the text
35      */
36     private MediaType(final String text) {
37         this.text = text;
38     }
39
40     /**
41      * Gets the enum.
42      *
43      * @param value the value
44      * @return the enum
45      */
46     public static MediaType getEnum(String value) {
47
48         for (MediaType v : values()) {
49             if (v.toString().equalsIgnoreCase(value)) {
50                 return v;
51             }
52         }
53
54         throw new IllegalArgumentException("bad value: " + value);
55
56     }
57
58     /**
59      * @{inheritDoc}
60      */
61     @Override
62     public String toString() {
63         return text;
64     }
65 }