static <T extends Comparable<T>> JwtClaimConstraint<T> |
Constraints.isGreaterOrEqualTo(Function<ValidatorConstraintContext,T> limitSupplier) |
Returns a JwtClaimConstraint that will succeed if the value is greater than or equal to the given value,
otherwise it will fail.
|
static <T extends Comparable<T>> JwtClaimConstraint<T> |
Constraints.isGreaterThan(Function<ValidatorConstraintContext,T> limitSupplier) |
Returns a JwtClaimConstraint that will succeed if the value is greater than the given value,
otherwise it will fail.
|
static <T extends Comparable<T>> JwtClaimConstraint<T> |
Constraints.isLessOrEqualTo(Function<ValidatorConstraintContext,T> limitSupplier) |
Returns a JwtClaimConstraint that will succeed if the value is less than or equal to the given value,
otherwise it will fail.
|
static <T extends Comparable<T>> JwtClaimConstraint<T> |
Constraints.isLessThan(Function<ValidatorConstraintContext,T> limitSupplier) |
Returns a JwtClaimConstraint that will succeed if the value is less than the given value,
otherwise it will fail.
|