blob: 537ba47c5316f5dcd0202d00b52e01b748f63d0f [file] [log] [blame]
Vinod Kumar S38046502016-03-23 15:30:27 +05301/*
Brian O'Connor5ab426f2016-04-09 01:19:45 -07002 * Copyright 2016-present Open Networking Laboratory
Vinod Kumar S38046502016-03-23 15:30:27 +05303 *
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/**
Bharat saraswald9822e92016-04-05 15:13:44 +053020 * Represents type of temporary files generated.
Vinod Kumar S38046502016-03-23 15:30:27 +053021 */
22public final class GeneratedTempFileType {
23
24 /**
Bharat saraswald9822e92016-04-05 15:13:44 +053025 * Creates an instance of generated temp file type.
Vinod Kumar S38046502016-03-23 15:30:27 +053026 */
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}