Cleaned up Java Binding code from YANG Tools
[mdsal.git] / binding / mdsal-binding-java-api-generator / src / main / java / org / opendaylight / yangtools / sal / java / api / generator / Constants.java
1 /*
2  * Copyright (c) 2013 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.yangtools.sal.java.api.generator;
9
10 /**
11  * 
12  * Various constants when generating JAVA source code.
13  * 
14  */
15 final class Constants {
16
17     public static final String COMMA = ",";
18     public static final String DOT = ".";
19
20     /**
21      * Name of the class constant which contains list of <code>Pattern</code>
22      * instances.
23      */
24     public static final String MEMBER_PATTERN_LIST = "patterns";
25
26     /**
27      * It doesn't have the sense to create the instances of this class.
28      */
29     private Constants() {
30     }
31 }