forked from confluentinc/avro
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
AVRO-2118: Reverting changes by Thiruvalluvan M G <thiru@startsmartla…
…bs.com> from commit 9132015
- Loading branch information
1 parent
5040c64
commit c7a3c96
Showing
2 changed files
with
57 additions
and
55 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
71 changes: 37 additions & 34 deletions
71
lang/java/compiler/src/main/java/org/apache/avro/compiler/schema/SchemaVisitorAction.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,41 +1,44 @@ | ||
/* | ||
* Copyright (c) 2001 - 2016, Zoltan Farkas All Rights Reserved. | ||
* | ||
* This library is free software; you can redistribute it and/or | ||
* modify it under the terms of the GNU Lesser General Public | ||
* License as published by the Free Software Foundation; either | ||
* version 2.1 of the License, or (at your option) any later version. | ||
* | ||
* This library is distributed in the hope that it will be useful, | ||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
* GNU General Public License for more details. | ||
* | ||
* You should have received a copy of the GNU Lesser General Public | ||
* License along with this program; if not, write to the Free Software | ||
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. | ||
*/ | ||
/* | ||
* Copyright (c) 2001 - 2016, Zoltan Farkas All Rights Reserved. | ||
* | ||
* This library is free software; you can redistribute it and/or | ||
* modify it under the terms of the GNU Lesser General Public | ||
* License as published by the Free Software Foundation; either | ||
* version 2.1 of the License, or (at your option) any later version. | ||
* | ||
* This library is distributed in the hope that it will be useful, | ||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
* GNU General Public License for more details. | ||
* | ||
* You should have received a copy of the GNU Lesser General Public | ||
* License along with this program; if not, write to the Free Software | ||
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. | ||
*/ | ||
|
||
package org.apache.avro.compiler.schema; | ||
|
||
/** | ||
* @author zoly | ||
*/ | ||
public enum SchemaVisitorAction { | ||
|
||
/** | ||
* continue visit. | ||
*/ | ||
CONTINUE, | ||
/** | ||
* terminate visit. | ||
*/ | ||
TERMINATE, | ||
/** | ||
* when returned from pre non terminal visit method the children of the non terminal are skipped. | ||
* afterVisitNonTerminal for the current schema will not be invoked. | ||
*/ | ||
SKIP_SUBTREE, | ||
/** | ||
* Skip visiting the siblings of this schema. | ||
*/ | ||
SKIP_SIBLINGS; | ||
/** | ||
* continue visit. | ||
*/ | ||
CONTINUE, | ||
/** | ||
* terminate visit. | ||
*/ | ||
TERMINATE, | ||
/** | ||
* when returned from pre non terminal visit method the children of the non terminal are skipped. | ||
* afterVisitNonTerminal for the current schema will not be invoked. | ||
*/ | ||
SKIP_SUBTREE, | ||
/** | ||
* Skip visiting the siblings of this schema. | ||
*/ | ||
SKIP_SIBLINGS; | ||
|
||
} |