JavaIdentifierNormalizer ThreadSafe/Memory leak fix
[mdsal.git] / binding2 / mdsal-binding2-generator-util / src / main / java / org / opendaylight / mdsal / binding / javav2 / generator / util / JavaIdentifier.java
1 /*
2  * Copyright (c) 2017 Cisco Systems, Inc. and others.  All rights reserved.
3  *
4  * This program and the accompanying materials are made available under the
5  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
6  * and is available at http://www.eclipse.org/legal/epl-v10.html
7  */
8 package org.opendaylight.mdsal.binding.javav2.generator.util;
9
10 import com.google.common.annotations.Beta;
11
12 /**
13  * Types of java identifier:
14  * <ul>
15  * <li>class</li>
16  * <li>interface</li>
17  * <li>enum</li>
18  * <li>enum value</li>
19  * <li>method</li>
20  * <li>variable</li>
21  * <li>constant</li>
22  * <li>package</li>
23  * </ul>
24  */
25 @Beta
26 public enum JavaIdentifier {
27
28     CLASS, INTERFACE, ENUM, ENUM_VALUE, METHOD, VARIABLE, CONSTANT, PACKAGE
29 }