blob: e69492a17c54f94a66e473526c706e089a07b454 [file] [log] [blame]
Gaurav Agrawald9d6cc82016-03-29 02:17:23 +05301/*
Brian O'Connor5ab426f2016-04-09 01:19:45 -07002 * Copyright 2016-present Open Networking Laboratory
Gaurav Agrawald9d6cc82016-03-29 02:17:23 +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.datamodel;
18
19/**
Bharat saraswald9822e92016-04-05 15:13:44 +053020 * Represents ENUM to identify the YANG resolution type.
Gaurav Agrawald9d6cc82016-03-29 02:17:23 +053021 */
22public enum ResolutionType {
23 /**
24 * Identifies that resolution is for typedef.
25 */
26 TYPEDEF_RESOLUTION,
27
28 /**
29 * Identifies that resolution is for grouping.
30 */
Vidyashree Rama7142d9c2016-04-26 15:06:06 +053031 GROUPING_RESOLUTION
Gaurav Agrawald9d6cc82016-03-29 02:17:23 +053032}