/******************************************************************************* * Copyright (c) 2000-present Liferay, Inc. All rights reserved. * * This library is free software; you can redistribute it and/or modify it under * the terms of the GNU Lesser General Public License as published by the Free * Software Foundation; either version 2.1 of the License, or (at your option) * any later version. * * This library is distributed in the hope that it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more * details. * *******************************************************************************/ package com.liferay.ide.core.util; /** * @author Gregory Amerson * @author Kuo Zhang */ public class StringPool { public static final String ASTERISK = "*"; public static final String BLANK = ""; public static final String COLON = ":"; public static final String COMMA = ","; public static final String DASH = "-"; public static final String DOUBLE_ASTERISK = "**"; public static final String DOUBLE_QUOTE = "\""; public static final char DOUBLE_QUOTE_CHAR = '\"'; public static final String EMPTY = BLANK; public static final String EQUALS = "="; public static final String FORWARD_SLASH = "/"; public static final String PERIOD = "."; public static final String SINGLE_QUOTE = "\'"; public static final char SINGLE_QUOTE_CHAR = '\''; public static final String SPACE = " "; public static final String UNDERSCORE = "_"; }