/* * JBoss, Home of Professional Open Source * Copyright 2010, Red Hat, Inc., and individual contributors * by the @authors tag. See the copyright.txt in the distribution for a * full listing of individual contributors. * * This 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 software 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. * * You should have received a copy of the GNU Lesser General Public * License along with this software; if not, write to the Free * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA * 02110-1301 USA, or see the FSF site: http://www.fsf.org. */ package org.jboss.arquillian.protocol.servlet.arq514hack.descriptors.impl.web; import java.util.Collection; import java.util.Iterator; /** * String utilities. * * @author <a href="mailto:lincolnbaxter@gmail.com">Lincoln Baxter, III</a> */ public class Strings { /** * Capitalize the given String: "input" -> "Input" */ public static String capitalize(final String input) { if ((input == null) || (input.length() == 0)) { return input; } return input.substring(0, 1).toUpperCase() + input.substring(1).toLowerCase(); } public static String unquote(final String value) { String result = null; if (value != null) { result = value.replaceAll("\"(.*)\"", "$1"); } return result; } public static String enquote(final String value) { String result = null; if (value != null) { result = "\"" + value + "\""; } return result; } public static String join(Collection<?> collection, String delimiter) { StringBuffer buffer = new StringBuffer(); Iterator<?> iter = collection.iterator(); while (iter.hasNext()) { buffer.append(iter.next()); if (iter.hasNext()) { buffer.append(delimiter); } } return buffer.toString(); } public static boolean isNullOrEmpty(String string) { return string == null || "".equals(string); } public static boolean isTrue(String value) { return value == null ? false : "true".equalsIgnoreCase(value.trim()); } public static boolean areEqual(String left, String right) { if (left == null && right == null) { return true; } else if (left == null || right == null) { return false; } return left.equals(right); } public static boolean areEqualTrimmed(String left, String right) { if (left != null && right != null) { return left.trim().equals(right.trim()); } return areEqual(left, right); } }