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

org.cssless.css.parsing.CharUtility Maven / Gradle / Ivy

The newest version!
package org.cssless.css.parsing;

/**
 * Provides simplified definitions of character classes
 */
final class CharUtility {

	public static boolean isNullOrWhiteSpace(String value) {
		if (value == null) {
			return true;
		}

		for (int i=0, length=value.length(); i
            


© 2015 - 2024 Weber Informatics LLC | Privacy Policy