All Downloads are FREE. Search and download functionalities are using the official Maven repository.

eu.fbk.twm.utils.CharacterTable Maven / Gradle / Ivy

The newest version!
/*
 * Copyright (2013) Fondazione Bruno Kessler (http://www.fbk.eu/)
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *   http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package eu.fbk.twm.utils;

/**
 * Created with IntelliJ IDEA.
 * User: giuliano
 * Date: 1/18/13
 * Time: 9:49 AM
 * To change this template use File | Settings | File Templates.
 */
public class CharacterTable {
	public final static char QUOTATION_MARK = '"';

	public final static char APOSTROPHE = '\'';

	public final static char LEFT_PARENTHESIS = '(';

	public final static char RIGHT_PARENTHESIS = ')';

	public final static char LOW_LINE = '_';

	public final static char SPACE = ' ';

	public final static char NUMBER_SIGN = '#';

	public final static char SOLIDUS = '/';

	public final static char HYPHEN_MINUS = '-';

	public final static char VERTICAL_LINE = '|';

	public final static char FULL_STOP = '.';

	public final static char COLON = ':';

	//public static final char SPACE = 0x20;

	public static final char HORIZONTAL_TABULATION = 0x0009;

	public static final char LINE_FEED = 0x000a;

	public static final char FORM_FEED = 0x000c;

	public static final char CARRIADGE_RETURN = 0x000d;

	public static final char PLUS_SIGN = '+';
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy