blob: 1be5cacc4e76d8ade6ea99a05d062138c74f918c [file] [log] [blame]
VinodKumarS-Huawei2ee9e7e2016-06-01 14:30:22 +05301/*
2 * Copyright 2016-present 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
Gaurav Agrawal95b416c2016-06-07 14:00:26 +053017package org.onosproject.yangutils.datamodel;
VinodKumarS-Huawei2ee9e7e2016-06-01 14:30:22 +053018
19/**
20 * Type of the resolvable info.
21 */
22public enum ResolvableType {
23
24 /**
25 * Identifies the derived data type.
26 */
27 YANG_DERIVED_DATA_TYPE,
28
29 /**
30 * Identifies the uses.
31 */
Vidyashree Ramadeac28b2016-06-20 15:12:43 +053032 YANG_USES,
33
34 /**
35 * Identifies the if-feature.
36 */
janani be18b5342016-07-13 21:06:41 +053037 YANG_IF_FEATURE,
38
39 /**
40 * Identifies the leafref.
41 */
Shankara-Huaweidf7b9ca2016-07-14 11:35:34 +053042 YANG_LEAFREF,
43
44 /**
45 * Identifies the base.
46 */
47 YANG_BASE,
48
49 /**
50 * Identifies the identityref.
51 */
Bharat saraswalb1170bd2016-07-14 13:26:18 +053052 YANG_IDENTITYREF,
53
54 /**
55 * Identifies the augment.
56 */
57 YANG_AUGMENT
VinodKumarS-Huawei2ee9e7e2016-06-01 14:30:22 +053058}