Skip navigation links
A C N O R S W 

A

Args - Class in org.yatech.common.args
 

C

CollectionArgs - Class in org.yatech.common.args
A utility class for common methods on arguments of type Collection

N

NumericArgs - Class in org.yatech.common.args
 

O

org.yatech.common.args - package org.yatech.common.args
 

R

requireContains(C, E, String) - Static method in class org.yatech.common.args.CollectionArgs
Require that a given collection contain a specific element
requireContainsKey(M, K, String) - Static method in class org.yatech.common.args.CollectionArgs
Require that a given map contain a specific key
requireContainsValue(M, V, String) - Static method in class org.yatech.common.args.CollectionArgs
Require that a given map contain a specific value
requireEmpty(C, String) - Static method in class org.yatech.common.args.CollectionArgs
Require that a given collection is empty
requireEmpty(M, String) - Static method in class org.yatech.common.args.CollectionArgs
Require that a given map is empty
requireExcludes(C, E, String) - Static method in class org.yatech.common.args.CollectionArgs
Require that a given collection does not contain a specific element
requireExcludesKey(M, K, String) - Static method in class org.yatech.common.args.CollectionArgs
Require that a given map does not contain a specific key
requireExcludesValue(M, V, String) - Static method in class org.yatech.common.args.CollectionArgs
Require that a given map does not contain a specific value
requireGreaterThan(Long, long, String) - Static method in class org.yatech.common.args.NumericArgs
Require that the given value is greater than another value (value > other)
requireGreaterThan(Integer, int, String) - Static method in class org.yatech.common.args.NumericArgs
Require that the given value is greater than another value (value > other)
requireGreaterThan(Double, double, String) - Static method in class org.yatech.common.args.NumericArgs
Require that the given value is greater than another value (value > other)
requireGreaterThan(Float, float, String) - Static method in class org.yatech.common.args.NumericArgs
Require that the given value is greater than another value (value > other)
requireGreaterThanEquals(Long, long, String) - Static method in class org.yatech.common.args.NumericArgs
Require that the given value is greater than or equals to another value (value >= other)
requireGreaterThanEquals(Integer, int, String) - Static method in class org.yatech.common.args.NumericArgs
Require that the given value is greater than or equals to another value (value >= other)
requireGreaterThanEquals(Double, double, String) - Static method in class org.yatech.common.args.NumericArgs
Require that the given value is greater than or equals to another value (value >= other)
requireGreaterThanEquals(Float, float, String) - Static method in class org.yatech.common.args.NumericArgs
Require that the given value is greater than or equals to another value (value >= other)
requireInRange(Long, long, boolean, long, boolean, String) - Static method in class org.yatech.common.args.NumericArgs
Require that the given value is in a given range
requireInRange(Integer, int, boolean, int, boolean, String) - Static method in class org.yatech.common.args.NumericArgs
Require that the given value is in a given range
requireInRange(Double, double, boolean, double, boolean, String) - Static method in class org.yatech.common.args.NumericArgs
Require that the given value is in a given range
requireInRange(Float, float, boolean, float, boolean, String) - Static method in class org.yatech.common.args.NumericArgs
Require that the given value is in a given range
requireInRangeExclusive(Long, long, long, String) - Static method in class org.yatech.common.args.NumericArgs
Require that the given value is in a given range (exclusive)
requireInRangeExclusive(Integer, int, int, String) - Static method in class org.yatech.common.args.NumericArgs
Require that the given value is in a given range (exclusive)
requireInRangeExclusive(Double, double, double, String) - Static method in class org.yatech.common.args.NumericArgs
Require that the given value is in a given range (exclusive)
requireInRangeExclusive(Float, float, float, String) - Static method in class org.yatech.common.args.NumericArgs
Require that the given value is in a given range (exclusive)
requireInRangeInclusive(Long, long, long, String) - Static method in class org.yatech.common.args.NumericArgs
Require that the given value is in a given range (inclusive)
requireInRangeInclusive(Integer, int, int, String) - Static method in class org.yatech.common.args.NumericArgs
Require that the given value is in a given range (inclusive)
requireInRangeInclusive(Double, double, double, String) - Static method in class org.yatech.common.args.NumericArgs
Require that the given value is in a given range (inclusive)
requireInRangeInclusive(Float, float, float, String) - Static method in class org.yatech.common.args.NumericArgs
Require that the given value is in a given range (inclusive)
requireLessThan(Long, long, String) - Static method in class org.yatech.common.args.NumericArgs
Require that the given value is less than another value (value < other)
requireLessThan(Integer, int, String) - Static method in class org.yatech.common.args.NumericArgs
Require that the given value is less than another value (value < other)
requireLessThan(Double, double, String) - Static method in class org.yatech.common.args.NumericArgs
Require that the given value is less than another value (value < other)
requireLessThan(Float, float, String) - Static method in class org.yatech.common.args.NumericArgs
Require that the given value is less than another value (value < other)
requireLessThanEquals(Long, long, String) - Static method in class org.yatech.common.args.NumericArgs
Require that the given value is less than or equals to another value (value <= other)
requireLessThanEquals(Integer, int, String) - Static method in class org.yatech.common.args.NumericArgs
Require that the given value is less than or equals to another value (value <= other)
requireLessThanEquals(Double, double, String) - Static method in class org.yatech.common.args.NumericArgs
Require that the given value is less than or equals to another value (value <= other)
requireLessThanEquals(Float, float, String) - Static method in class org.yatech.common.args.NumericArgs
Require that the given value is less than or equals to another value (value <= other)
requireMatches(String, Pattern, String) - Static method in class org.yatech.common.args.StringArgs
Require that the given value matches the given pattern
requireMaxSize(C, int, String) - Static method in class org.yatech.common.args.CollectionArgs
Require that a given collection does not exceed a max size
requireMaxSize(M, int, String) - Static method in class org.yatech.common.args.CollectionArgs
Require that a given map does not exceed a max size
requireMinSize(C, int, String) - Static method in class org.yatech.common.args.CollectionArgs
Require that a given collection has a minimum size
requireMinSize(M, int, String) - Static method in class org.yatech.common.args.CollectionArgs
Require that a given map has a minimum size
requireNegative(Long, String) - Static method in class org.yatech.common.args.NumericArgs
Require that the given value is negative (value < 0)
requireNegative(Integer, String) - Static method in class org.yatech.common.args.NumericArgs
Require that the given value is negative (value < 0)
requireNegative(Double, String) - Static method in class org.yatech.common.args.NumericArgs
Require that the given value is negative (value < 0)
requireNegative(Float, String) - Static method in class org.yatech.common.args.NumericArgs
Require that the given value is negative (value < 0)
requireNonBlank(String, String) - Static method in class org.yatech.common.args.StringArgs
Require that the given value is non-blank (not whitespaces only)
requireNonEmpty(C, String) - Static method in class org.yatech.common.args.CollectionArgs
Require that a given collection is not empty
requireNonEmpty(M, String) - Static method in class org.yatech.common.args.CollectionArgs
Require that a given map is not empty
requireNonEmpty(String, String) - Static method in class org.yatech.common.args.StringArgs
Require that the given value is not empty
requireNonNegative(Long, String) - Static method in class org.yatech.common.args.NumericArgs
Require that the given value is non-negative (value >= 0)
requireNonNegative(Integer, String) - Static method in class org.yatech.common.args.NumericArgs
Require that the given value is non-negative (value >= 0)
requireNonNegative(Double, String) - Static method in class org.yatech.common.args.NumericArgs
Require that the given value is non-negative (value >= 0)
requireNonNegative(Float, String) - Static method in class org.yatech.common.args.NumericArgs
Require that the given value is non-negative (value >= 0)
requireNonNull(V, String) - Static method in class org.yatech.common.args.Args
Require that the given value is not null and return it
requireNonPositive(Long, String) - Static method in class org.yatech.common.args.NumericArgs
Require that the given value is non-positive (value <= 0)
requireNonPositive(Integer, String) - Static method in class org.yatech.common.args.NumericArgs
Require that the given value is non-positive (value <= 0)
requireNonPositive(Double, String) - Static method in class org.yatech.common.args.NumericArgs
Require that the given value is non-positive (value <= 0)
requireNonPositive(Float, String) - Static method in class org.yatech.common.args.NumericArgs
Require that the given value is non-positive (value <= 0)
requireNonZero(Long, String) - Static method in class org.yatech.common.args.NumericArgs
Require that the given value is not zero (value != 0)
requireNonZero(Integer, String) - Static method in class org.yatech.common.args.NumericArgs
Require that the given value is not zero (value != 0)
requireNonZero(Double, String) - Static method in class org.yatech.common.args.NumericArgs
Require that the given value is not zero (value != 0)
requireNonZero(Float, String) - Static method in class org.yatech.common.args.NumericArgs
Require that the given value is not zero (value != 0)
requirePositive(Long, String) - Static method in class org.yatech.common.args.NumericArgs
Require that the given value is positive (value > 0)
requirePositive(Integer, String) - Static method in class org.yatech.common.args.NumericArgs
Require that the given value is positive (value > 0)
requirePositive(Double, String) - Static method in class org.yatech.common.args.NumericArgs
Require that the given value is positive (value > 0)
requirePositive(Float, String) - Static method in class org.yatech.common.args.NumericArgs
Require that the given value is positive (value > 0)
requireSatisfies(V, Predicate<V>, String) - Static method in class org.yatech.common.args.Args
Require that the given value satisfies the given predicate

S

StringArgs - Class in org.yatech.common.args
 

W

WHITESPACES_ONLY - Static variable in class org.yatech.common.args.StringArgs
A pattern for matching only whitespaces
A C N O R S W 
Skip navigation links