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

com.xwzhou.commons.lang.Strings Maven / Gradle / Ivy

The newest version!
package com.xwzhou.commons.lang;

import java.nio.charset.Charset;

public class Strings {

	public static String transform(String string, Charset charset) {
		return new String(string.getBytes(), charset);
	}

	public static boolean isEmptyOrNull(CharSequence sequence) {
		return null == sequence || sequence.length() == 0;
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy