blob: 03446726350f1ce26d31af6d7aa514239834e563 [file] [log] [blame]
Bharat saraswal2f00b4b2016-03-04 20:08:09 +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.utils;
18
19/**
20 * Data Store types.
21 */
22public enum TempDataStoreTypes {
23
24 /**
25 * Getter methods for interfaces.
26 */
27 GETTER_METHODS,
28
29 /**
30 * Getter methods impl for classes.
31 */
32 GETTER_METHODS_IMPL,
33
34 /**
35 * Setter methods for interfaces.
36 */
37 SETTER_METHODS,
38
39 /**
40 * Setter methods impl for classes.
41 */
42 SETTER_METHODS_IMPL,
43
44 /**
45 * Constructor for impl class.
46 */
47 CONSTRUCTOR,
48
49 /**
50 * Attributes.
51 */
52 ATTRIBUTE,
53
54 /**
55 * TypeDef.
56 */
57 TYPE_DEF,
58
59 /**
60 * ToString method.
61 */
62 TO_STRING,
63
64 /**
65 * HashCode method.
66 */
67 HASH_CODE,
68
69 /**
70 * Equals method.
71 */
72 EQUALS
73}