001/* Copyright 2000 by Basil Vandegriend. All rights reserved. */ 002 003package com.basilv.core; 004 005/** 006 * Provides utility methods for Strings. 007 */ 008public class StringUtilities 009{ 010 011 public static boolean isNullOrEmpty(String stringToTest) { 012 return (stringToTest == null || stringToTest.length() == 0); 013 } 014 015}