1 /*******************************************************************************
2  * Copyright (c) 2000, 2016 IBM Corporation and others.
3  *
4  * This program and the accompanying materials
5  * are made available under the terms of the Eclipse Public License 2.0
6  * which accompanies this distribution, and is available at
7  * https://www.eclipse.org/legal/epl-2.0/
8  *
9  * SPDX-License-Identifier: EPL-2.0
10  *
11  * Contributors:
12  *     IBM Corporation - initial API and implementation
13  *******************************************************************************/
14 package org.eclipse.jdt.internal.compiler.util;
15 
16 public interface SuffixConstants {
17 	public final static String EXTENSION_class = "class"; //$NON-NLS-1$
18 	public final static String EXTENSION_CLASS = "CLASS"; //$NON-NLS-1$
19 	public final static String EXTENSION_java = "java"; //$NON-NLS-1$
20 	public final static String EXTENSION_JAVA = "JAVA"; //$NON-NLS-1$
21 	public final static String EXTENSION_jmod = "jmod"; //$NON-NLS-1$
22 	public final static String EXTENSION_JMOD = "JMOD"; //$NON-NLS-1$
23 
24 	public final static String SUFFIX_STRING_class = "." + EXTENSION_class; //$NON-NLS-1$
25 	public final static String SUFFIX_STRING_CLASS = "." + EXTENSION_CLASS; //$NON-NLS-1$
26 	public final static String SUFFIX_STRING_java = "." + EXTENSION_java; //$NON-NLS-1$
27 	public final static String SUFFIX_STRING_JAVA = "." + EXTENSION_JAVA; //$NON-NLS-1$
28 
29 	public final static char[] SUFFIX_class = SUFFIX_STRING_class.toCharArray();
30 	public final static char[] SUFFIX_CLASS = SUFFIX_STRING_CLASS.toCharArray();
31 	public final static char[] SUFFIX_java = SUFFIX_STRING_java.toCharArray();
32 	public final static char[] SUFFIX_JAVA = SUFFIX_STRING_JAVA.toCharArray();
33 }
34