/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

  1. /* Copyright 2010 Google Inc.
  2. *
  3. * Licensed under the Apache License, Version 2.0 (the "License");
  4. * you may not use this file except in compliance with the License.
  5. * You may obtain a copy of the License at
  6. *
  7. * http://www.apache.org/licenses/LICENSE-2.0
  8. *
  9. * Unless required by applicable law or agreed to in writing, software
  10. * distributed under the License is distributed on an "AS IS" BASIS.
  11. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  12. * See the License for the specific language governing permissions and
  13. * limitations under the License
  14. */
  15. package com.google.ie.common.constants;
  16. public class CharPool {
  17. public static final char AMPERSAND = '&';
  18. public static final char APOSTROPHE = '\'';
  19. public static final char AT = '@';
  20. public static final char BACK_SLASH = '\\';
  21. public static final char CLOSE_BRACKET = ']';
  22. public static final char CLOSE_CURLY_BRACE = '}';
  23. public static final char CLOSE_PARENTHESIS = ')';
  24. public static final char COLON = ':';
  25. public static final char COMMA = ',';
  26. public static final char DASH = '-';
  27. public static final char EQUAL = '=';
  28. public static final char GREATER_THAN = '>';
  29. public static final char FORWARD_SLASH = '/';
  30. public static final char LESS_THAN = '<';
  31. public static final char LOWER_CASE_E = 'e';
  32. public static final char MINUS = '-';
  33. public static final char NEW_LINE = '\n';
  34. public static final char OPEN_BRACKET = '[';
  35. public static final char OPEN_CURLY_BRACE = '{';
  36. public static final char OPEN_PARENTHESIS = '(';
  37. public static final char PERCENT = '%';
  38. public static final char PERIOD = '.';
  39. public static final char PIPE = '|';
  40. public static final char PLUS = '+';
  41. public static final char POUND = '#';
  42. public static final char QUESTION = '?';
  43. public static final char QUOTE = '\"';
  44. public static final char RETURN = '\r';
  45. public static final char SEMICOLON = ';';
  46. public static final char SLASH = FORWARD_SLASH;
  47. public static final char SPACE = ' ';
  48. public static final char STAR = '*';
  49. public static final char TILDE = '~';
  50. public static final char UNDERLINE = '_';
  51. public static final char UPPER_CASE_E = 'E';
  52. }