java.lang.Object
org.apache.wicket.util.lang.Checks
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionstatic voidChecks argument is not empty (not null and has a non-whitespace character)static voidnotEmptyShort(String argument, String name) Checks argument is not empty (not null and has a non-whitespace character)static voidChecks value is not nullstatic voidnotNullShort(Object argument, String name) Checks value is not nullstatic <T extends Comparable<? super T>>
voidwithinRange(T min, T max, T value, String message) Checks if argument is within a rangestatic <T extends Comparable<? super T>>
voidwithinRangeShort(T min, T max, T value, String name) Checks if argument is within a range
-
Constructor Details
-
Checks
public Checks()
-
-
Method Details
-
notNull
Checks value is not null- Parameters:
argument-message-params-- Throws:
IllegalStateException
-
notEmpty
Checks argument is not empty (not null and has a non-whitespace character)- Parameters:
argument-message-params-- Throws:
IllegalStateException
-
withinRange
public static <T extends Comparable<? super T>> void withinRange(T min, T max, T value, String message) Checks if argument is within a range- Type Parameters:
T-- Parameters:
min-max-value-message-- Throws:
IllegalStateException
-
notNullShort
Checks value is not null- Parameters:
argument-name-- Throws:
IllegalStateException
-
notEmptyShort
Checks argument is not empty (not null and has a non-whitespace character)- Parameters:
argument-name-- Throws:
IllegalStateException
-
withinRangeShort
public static <T extends Comparable<? super T>> void withinRangeShort(T min, T max, T value, String name) Checks if argument is within a range- Type Parameters:
T-- Parameters:
min-max-value-name-- Throws:
IllegalStateException
-