blob: 6a285c7f4303ec78dd74d0f1cffcc9956514189f [file] [log] [blame]
Vinod Kumar S67e7be62016-02-11 20:13:28 +05301/*Copyright 2016.year Open Networking Laboratory
2
3Licensed under the Apache License, Version 2.0 (the "License");
4you may not use this file except in compliance with the License.
5You may obtain a copy of the License at
6
7 http://www.apache.org/licenses/LICENSE-2.0
8
9Unless required by applicable law or agreed to in writing, software
10distributed under the License is distributed on an "AS IS" BASIS,
11WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12See the License for the specific language governing permissions and
13limitations under the License.*/
14package org.onosproject.yangutils.translator;
15
16/**
17 * Type of files generated.
18 */
19public enum GeneratedFileType {
20 /**
21 * interface file.
22 */
23 INTERFACE,
24
25 /**
26 * class file.
27 */
28 BUILDER_CLASS,
29
30 /**
31 * interface and class file.
32 */
33 BOTH
34}