Mercurial > dive4elements > gnv-client
view gnv-artifacts/src/main/java/de/intevation/gnv/utils/StringUtils.java @ 800:db5b04ecb426
ISSUE215: Improved ODV-Export. now all Columns which have identical values but different Parameters will be merged to one row.
gnv-artifacts/trunk@882 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author | Tim Englich <tim.englich@intevation.de> |
---|---|
date | Tue, 06 Apr 2010 13:07:11 +0000 |
parents | 6cff63d0c434 |
children | 2cea76f1112e |
line wrap: on
line source
package de.intevation.gnv.utils; /** * @author <a href="mailto:sascha.teichmann@intevation.de">Sascha L. Teichmann</a> */ public final class StringUtils { private StringUtils() { } public static final String [] append(String [] haystack, String straw) { if (haystack == null) { return new String [] { straw }; } String [] nhaystack = new String[haystack.length + 1]; System.arraycopy(haystack, 0, nhaystack, 0, haystack.length); nhaystack[haystack.length] = straw; return nhaystack; } public static final boolean contains(String [] haystack, String needle) { if (haystack == null) { return false; } if (needle == null) { for (int i = haystack.length - 1; i >= 0; --i) { if (haystack[i] == null) { return true; } } } else { for (int i = haystack.length - 1; i >= 0; --i) { String straw = haystack[i]; if (straw != null && straw.equals(needle)) { return true; } } } return false; } } // vim:set ts=4 sw=4 si et sta sts=4 fenc=utf8 :