net.java.swingfx.common
Class Utils
java.lang.Object
net.java.swingfx.common.Utils
public class Utils
- extends Object
A utilites class which provides "helper" methods used throughout the SwingFX suite.
This class provides a variety of methods which can be accessed in a static way.
- Since:
- 1.0
$Revision: 1.1 $
- Author:
- craig wickesser, 19/02/2005
Method Summary |
static boolean |
isNullOrEmpty(String val)
Determines if the given String is null or
empty |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
isNullOrEmpty
public static boolean isNullOrEmpty(String val)
- Determines if the given
String
is null
or
empty
- Parameters:
val
- the String
to check
- Returns:
true
if val
is null
or
empty, false
otherwise