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

com.github.dadiyang.httpinvoker.util.StringUtils Maven / Gradle / Ivy

There is a newer version: 1.2.4
Show newest version
package com.github.dadiyang.httpinvoker.util;

/**
 * @author dadiyang
 * @since 2019-06-13
 */
public class StringUtils {
    private StringUtils() {
        throw new UnsupportedOperationException("utils should not be initialized!");
    }

    public static String upperCase(String str) {
        return str == null ? null : str.toUpperCase();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy