Package org.apache.thrift.partial
Class Validate
java.lang.Object
org.apache.thrift.partial.Validate
A superset of Validate class in Apache commons lang3.
It provides consistent message strings for frequently encountered checks. That simplifies callers because they have to supply only the name of the argument that failed a check instead of having to supply the entire message.
-
Method Summary
Modifier and TypeMethodDescriptionstatic voidcheckArgument(boolean expression, String format, Object... args) static voidcheckGreater(long value1, String value1Name, long value2, String value2Name) Validates that the first value is greater than the second value.static voidcheckGreaterOrEqual(long value1, String value1Name, long value2, String value2Name) Validates that the first value is greater than or equal to the second value.static voidcheckIntegerMultiple(long value1, String value1Name, long value2, String value2Name) Validates that the first value is an integer multiple of the second value.static voidcheckLessOrEqual(long value1, String value1Name, long value2, String value2Name) Validates that the first value is less than or equal to the second value.static voidcheckNotNegative(long value, String argName) Validates that the given integer argument is not negative.static voidcheckNotNull(Object obj, String argName) Validates that the given reference argument is not null.static voidcheckNotNullAndNotEmpty(byte[] array, String argName) Validates that the given array is not null and has at least one element.static voidcheckNotNullAndNotEmpty(int[] array, String argName) Validates that the given array is not null and has at least one element.static voidcheckNotNullAndNotEmpty(long[] array, String argName) Validates that the given array is not null and has at least one element.static voidcheckNotNullAndNotEmpty(short[] array, String argName) Validates that the given array is not null and has at least one element.static <T> voidcheckNotNullAndNotEmpty(Iterable<T> iter, String argName) Validates that the given buffer is not null and has non-zero capacity.static voidcheckNotNullAndNotEmpty(String arg, String argName) Validates that the given string is not null and has non-zero length.static <T> voidcheckNotNullAndNotEmpty(T[] array, String argName) Validates that the given array is not null and has at least one element.static <T> voidcheckNotNullAndNumberOfElements(Collection<T> collection, int numElements, String argName) Validates that the given set is not null and has an exact number of items.static voidcheckPathExists(Path path, String argName) static voidcheckPathExistsAsDir(Path path, String argName) static voidcheckPathExistsAsFile(Path path, String argName) static voidcheckPositiveInteger(long value, String argName) Validates that the given integer argument is not zero or negative.static voidcheckRequired(boolean isPresent, String argName) static voidcheckState(boolean expression, String format, Object... args) static voidcheckValid(boolean isValid, String argName) Validates that the expression (that checks a field is valid) is true.static voidcheckValid(boolean isValid, String argName, String validValues) Validates that the expression (that checks a field is valid) is true.static voidcheckValuesEqual(long value1, String value1Name, long value2, String value2Name) Validates that the given two values are equal.static voidcheckWithinRange(double value, String valueName, double minValueInclusive, double maxValueInclusive) Validates that the given value is within the given range of values.static voidcheckWithinRange(long value, String valueName, long minValueInclusive, long maxValueInclusive) Validates that the given value is within the given range of values.
-
Method Details
-
checkNotNull
Validates that the given reference argument is not null. -
checkPositiveInteger
Validates that the given integer argument is not zero or negative. -
checkNotNegative
Validates that the given integer argument is not negative. -
checkRequired
-
checkValid
Validates that the expression (that checks a field is valid) is true. -
checkValid
Validates that the expression (that checks a field is valid) is true. -
checkNotNullAndNotEmpty
Validates that the given string is not null and has non-zero length. -
checkNotNullAndNotEmpty
Validates that the given array is not null and has at least one element. -
checkNotNullAndNotEmpty
Validates that the given array is not null and has at least one element. -
checkNotNullAndNotEmpty
Validates that the given array is not null and has at least one element. -
checkNotNullAndNotEmpty
Validates that the given array is not null and has at least one element. -
checkNotNullAndNotEmpty
Validates that the given array is not null and has at least one element. -
checkNotNullAndNotEmpty
Validates that the given buffer is not null and has non-zero capacity. -
checkNotNullAndNumberOfElements
public static <T> void checkNotNullAndNumberOfElements(Collection<T> collection, int numElements, String argName) Validates that the given set is not null and has an exact number of items. -
checkValuesEqual
Validates that the given two values are equal. -
checkIntegerMultiple
public static void checkIntegerMultiple(long value1, String value1Name, long value2, String value2Name) Validates that the first value is an integer multiple of the second value. -
checkGreater
Validates that the first value is greater than the second value. -
checkGreaterOrEqual
public static void checkGreaterOrEqual(long value1, String value1Name, long value2, String value2Name) Validates that the first value is greater than or equal to the second value. -
checkLessOrEqual
Validates that the first value is less than or equal to the second value. -
checkWithinRange
public static void checkWithinRange(long value, String valueName, long minValueInclusive, long maxValueInclusive) Validates that the given value is within the given range of values. -
checkWithinRange
public static void checkWithinRange(double value, String valueName, double minValueInclusive, double maxValueInclusive) Validates that the given value is within the given range of values. -
checkPathExists
-
checkPathExistsAsDir
-
checkPathExistsAsFile
-
checkArgument
-
checkState
-