diff options
author | Artur Signell <artur@vaadin.com> | 2012-08-13 18:34:33 +0300 |
---|---|---|
committer | Artur Signell <artur@vaadin.com> | 2012-08-13 19:18:33 +0300 |
commit | e85d933b25cc3c5cc85eb7eb4b13b950fd8e1569 (patch) | |
tree | 9ab6f13f7188cab44bbd979b1cf620f15328a03f /src/org/jsoup/helper/Validate.java | |
parent | 14dd4d0b28c76eb994b181a4570f3adec53342e6 (diff) | |
download | vaadin-framework-e85d933b25cc3c5cc85eb7eb4b13b950fd8e1569.tar.gz vaadin-framework-e85d933b25cc3c5cc85eb7eb4b13b950fd8e1569.zip |
Moved server files to a server src folder (#9299)
Diffstat (limited to 'src/org/jsoup/helper/Validate.java')
-rw-r--r-- | src/org/jsoup/helper/Validate.java | 112 |
1 files changed, 0 insertions, 112 deletions
diff --git a/src/org/jsoup/helper/Validate.java b/src/org/jsoup/helper/Validate.java deleted file mode 100644 index 814bcc3a40..0000000000 --- a/src/org/jsoup/helper/Validate.java +++ /dev/null @@ -1,112 +0,0 @@ -package org.jsoup.helper; - -/** - * Simple validation methods. Designed for jsoup internal use - */ -public final class Validate { - - private Validate() {} - - /** - * Validates that the object is not null - * @param obj object to test - */ - public static void notNull(Object obj) { - if (obj == null) - throw new IllegalArgumentException("Object must not be null"); - } - - /** - * Validates that the object is not null - * @param obj object to test - * @param msg message to output if validation fails - */ - public static void notNull(Object obj, String msg) { - if (obj == null) - throw new IllegalArgumentException(msg); - } - - /** - * Validates that the value is true - * @param val object to test - */ - public static void isTrue(boolean val) { - if (!val) - throw new IllegalArgumentException("Must be true"); - } - - /** - * Validates that the value is true - * @param val object to test - * @param msg message to output if validation fails - */ - public static void isTrue(boolean val, String msg) { - if (!val) - throw new IllegalArgumentException(msg); - } - - /** - * Validates that the value is false - * @param val object to test - */ - public static void isFalse(boolean val) { - if (val) - throw new IllegalArgumentException("Must be false"); - } - - /** - * Validates that the value is false - * @param val object to test - * @param msg message to output if validation fails - */ - public static void isFalse(boolean val, String msg) { - if (val) - throw new IllegalArgumentException(msg); - } - - /** - * Validates that the array contains no null elements - * @param objects the array to test - */ - public static void noNullElements(Object[] objects) { - noNullElements(objects, "Array must not contain any null objects"); - } - - /** - * Validates that the array contains no null elements - * @param objects the array to test - * @param msg message to output if validation fails - */ - public static void noNullElements(Object[] objects, String msg) { - for (Object obj : objects) - if (obj == null) - throw new IllegalArgumentException(msg); - } - - /** - * Validates that the string is not empty - * @param string the string to test - */ - public static void notEmpty(String string) { - if (string == null || string.length() == 0) - throw new IllegalArgumentException("String must not be empty"); - } - - /** - * Validates that the string is not empty - * @param string the string to test - * @param msg message to output if validation fails - */ - public static void notEmpty(String string, String msg) { - if (string == null || string.length() == 0) - throw new IllegalArgumentException(msg); - } - - /** - Cause a failure. - @param msg message to output. - */ - public static void fail(String msg) { - throw new IllegalArgumentException(msg); - } -} |