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

com.power4j.tile.global.Chars Maven / Gradle / Ivy

The newest version!
/*
 * Copyright 2019-2024 the original author or authors.
 *
 * 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
 *
 *      https://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 com.power4j.tile.global;

/**
 * Character constants
 *
 * @author CJ ([email protected])
 * @since 1.0
 */
public interface Chars {

	// ~ Punctuation
	// ===================================================================================================

	char AMPERSAND = '&';

	char AT = '@';

	char STAR = '*';

	char BACK_SLASH = '\\';

	char COLON = ':';

	char COMMA = ',';

	char DASH = '-';

	char DOLLAR = '$';

	char DOT = '.';

	char EQUALS = '=';

	char SLASH = '/';

	char HASH = '#';

	char HAT = '^';

	char BRACE_L = '{';

	char BRACE_R = '}';

	char BRACKET_L = '(';

	char BRACKET_R = ')';

	char CHEV_L = '<';

	char CHEV_R = '>';

	char SQ_BRACKET_L = '[';

	char SQ_BRACKET_R = ']';

	char PERCENT = '%';

	char PIPE = '|';

	char PLUS = '+';

	char QUESTION_MARK = '?';

	char EXCLAMATION_MARK = '!';

	char SEMICOLON = ';';

	char SINGLE_QUOTE = '\'';

	char BACKTICK = '`';

	char TILDA = '~';

	char UNDERSCORE = '_';

	char QUOTE = '"';

	// ~ Number
	// ===================================================================================================

	char ZERO = '0';

	char ONE = '1';

	char TWO = '2';

	char THREE = '3';

	char FOUR = '4';

	char FIVE = '5';

	char SIX = '6';

	char SEVEN = '7';

	char EIGHT = '8';

	char NINE = '9';

	// ~ Misc
	// ===================================================================================================

	char SPACE = ' ';

	char TAB = '\t';

	char RETURN = '\r';

	char LF = '\n';

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy