All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.neba.core.util.StringUtil Maven / Gradle / Ivy

Go to download

Contains the entire NEBA core implementation, i.e. the framework that interprets the NEBA API annotations and provides implementations for the service and lifecycle callback interfaces provided in the NEBA API. This package must not export anything as its implementation details are entirely private.

There is a newer version: 5.2.3
Show newest version
package io.neba.core.util;

/**
 * @author Olaf Otto
 */
public class StringUtil {
    /**
     * Appends the given String to the given array of Strings.
     *
     * @param append must not be null.
     * @param appendTo must not be null.
     *
     * @return a new array representing the concatenation.
     */
    public static String[] append(String append, String[] appendTo) {
        if (append == null) {
            throw new IllegalArgumentException("Method argument append must not be null.");
        }
        if (appendTo == null) {
            throw new IllegalArgumentException("Method argument to must not be null.");
        }

        String[] result = new String[appendTo.length];
        for (int i = 0; i  < appendTo.length; ++i) {
            result[i] = appendTo[i] == null ? null : appendTo[i] + append;
        }

        return result;
    }
    private StringUtil() {}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy