blob: ae337bc70143a085ac851b674d8c1910dbbac0fe [file] [log] [blame]
Vinod Kumar S38046502016-03-23 15:30:27 +05301/*
2 * Copyright 2016 Open Networking Laboratory
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17package org.onosproject.yangutils.translator.tojava;
18
19/**
20 * Type of files generated.
21 */
22public final class GeneratedTempFileType {
23
24 /**
25 * prevent creating attributes.
26 */
27 private GeneratedTempFileType() {
28 }
29
30 /**
31 * attributes definition temporary file.
32 */
33 public static final int ATTRIBUTES_MASK = 1;
34
35 /**
36 * getter methods for interface.
37 */
38 public static final int GETTER_FOR_INTERFACE_MASK = 2;
39
40 /**
41 * getter methods for class.
42 */
43 public static final int GETTER_FOR_CLASS_MASK = 4;
44
45 /**
46 * setter methods for interface.
47 */
48 public static final int SETTER_FOR_INTERFACE_MASK = 8;
49
50 /**
51 * setter methods for class.
52 */
53 public static final int SETTER_FOR_CLASS_MASK = 16;
54
55 /**
56 * constructor method of class.
57 */
58 public static final int CONSTRUCTOR_IMPL_MASK = 32;
59
60 /**
61 * hash code implementation of class.
62 */
63 public static final int HASH_CODE_IMPL_MASK = 64;
64
65 /**
66 * equals implementation of class.
67 */
68 public static final int EQUALS_IMPL_MASK = 128;
69
70 /**
71 * to string implementation of class.
72 */
73 public static final int TO_STRING_IMPL_MASK = 256;
74}