Package org.fest.util
Class Preconditions
java.lang.Object
org.fest.util.Preconditions
Verifies correct argument values and state. Borrowed from Guava.
- Author:
- alruiz@google.com (Alex Ruiz)
-
Method Summary
Modifier and TypeMethodDescriptionstatic <T> TcheckNotNull(T reference) Verifies that the given object reference is notnull.static StringVerifies that the givenStringis notnullor empty.
-
Method Details
-
checkNotNullOrEmpty
Verifies that the givenStringis notnullor empty.- Parameters:
s- the givenString.- Returns:
- the validated
String. - Throws:
NullPointerException- if the givenStringisnull.IllegalArgumentException- if the givenStringis empty.
-
checkNotNull
public static <T> T checkNotNull(T reference) Verifies that the given object reference is notnull.- Parameters:
reference- the given object reference.- Returns:
- the non-
nullreference that was validated. - Throws:
NullPointerException- if the given object reference isnull.
-