/src/main/java/com/google/ie/common/constants/CharPool.java
http://thoughtsite.googlecode.com/ · Java · 91 lines · 38 code · 39 blank · 14 comment · 0 complexity · 18fb316ec921369ba40ecf08d416e3cc MD5 · raw file
- /* Copyright 2010 Google Inc.
- *
- * 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 com.google.ie.common.constants;
- public class CharPool {
- public static final char AMPERSAND = '&';
- public static final char APOSTROPHE = '\'';
- public static final char AT = '@';
- public static final char BACK_SLASH = '\\';
- public static final char CLOSE_BRACKET = ']';
- public static final char CLOSE_CURLY_BRACE = '}';
- public static final char CLOSE_PARENTHESIS = ')';
- public static final char COLON = ':';
- public static final char COMMA = ',';
- public static final char DASH = '-';
- public static final char EQUAL = '=';
- public static final char GREATER_THAN = '>';
- public static final char FORWARD_SLASH = '/';
- public static final char LESS_THAN = '<';
- public static final char LOWER_CASE_E = 'e';
- public static final char MINUS = '-';
- public static final char NEW_LINE = '\n';
- public static final char OPEN_BRACKET = '[';
- public static final char OPEN_CURLY_BRACE = '{';
- public static final char OPEN_PARENTHESIS = '(';
- public static final char PERCENT = '%';
- public static final char PERIOD = '.';
- public static final char PIPE = '|';
- public static final char PLUS = '+';
- public static final char POUND = '#';
- public static final char QUESTION = '?';
- public static final char QUOTE = '\"';
- public static final char RETURN = '\r';
- public static final char SEMICOLON = ';';
- public static final char SLASH = FORWARD_SLASH;
- public static final char SPACE = ' ';
- public static final char STAR = '*';
- public static final char TILDE = '~';
- public static final char UNDERLINE = '_';
- public static final char UPPER_CASE_E = 'E';
- }