blob: c1c28886434db812afa66320cb6b8417d8646c00 [file] [log] [blame]
Gaurav Agrawala04483c2016-02-13 14:23:40 +05301/*
Brian O'Connor5ab426f2016-04-09 01:19:45 -07002 * Copyright 2016-present Open Networking Laboratory
Gaurav Agrawala04483c2016-02-13 14:23:40 +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.parser.impl.parserutils;
18
19/**
Bharat saraswald9822e92016-04-05 15:13:44 +053020 * Represents listener error location.
Gaurav Agrawala04483c2016-02-13 14:23:40 +053021 */
22public enum ListenerErrorLocation {
23 /**
24 * Represents that the error location is before processing.
25 */
26 ENTRY(),
27
28 /**
29 * Represents that the error location is before processing.
30 */
31 EXIT();
32
33 /**
34 * Returns the message corresponding to listener error location.
35 *
Gaurav Agrawal8e8770a2016-02-27 03:57:50 +053036 * @param errorLocation enum value for type of error
37 * @return message corresponding to listener error location
Gaurav Agrawala04483c2016-02-13 14:23:40 +053038 */
39 public static String getErrorLocationMessage(ListenerErrorLocation errorLocation) {
40
41 switch (errorLocation) {
Vinod Kumar S71cba682016-02-25 15:52:16 +053042 case ENTRY:
43 return "before";
44 case EXIT:
45 return "after";
46 default:
47 return "during";
Gaurav Agrawala04483c2016-02-13 14:23:40 +053048 }
49 }
50}