Uses of Interface
io.helidon.validation.ValidationResponse
Packages that use ValidationResponse
-
Uses of ValidationResponse in io.helidon.validation
Methods in io.helidon.validation that return ValidationResponseModifier and TypeMethodDescriptionValidationContext.response()The overall validation response current available on this context.Validate an object that is annotated withValidation.Validated.Validate a specific property of an object that is annotated withValidation.Validated.static ValidationResponseValidators.validateCalendarFuture(Object value) Check that the calendar value is in the future.static ValidationResponseValidators.validateCalendarFutureOrPresent(Object value) Check that the calendar value is in the future or present.static ValidationResponseValidators.validateCalendarPast(Object value) Check that the calendar value is in the past.static ValidationResponseValidators.validateCalendarPastOrPresent(Object value) Check that the calendar value is in the past or present.static ValidationResponseValidators.validateCollectionSize(Object value, int minSize, int maxSize) Check that the collection value has the specified size.static ValidationResponseValidators.validateDigits(Number value, int integerDigits, int fractionDigits) Check that the number value has the specified number of digits.static ValidationResponseValidators.validateEmail(CharSequence value) Check that the string value is a valid email address.static ValidationResponseValidators.validateFalse(Boolean value) Check that the boolean value is false.static ValidationResponseValidators.validateLength(CharSequence value, int minLength, int maxLength) Check that the string value has the specified length.static ValidationResponseValidators.validateMax(Integer value, int maxValue) Check that the integer value is less than or equal to the maximum value.static ValidationResponseValidators.validateMax(Long value, long maxValue) Check that the long value is less than or equal to the maximum value.static ValidationResponseValidators.validateMax(Number value, String maxValue) Check that the number value is less than or equal to the maximum value.static ValidationResponseValidators.validateMin(Integer value, int minValue) Check that the integer value is greater than or equal to the minimum value.static ValidationResponseValidators.validateMin(Long value, long minValue) Check that the long value is greater than or equal to the minimum value.static ValidationResponseValidators.validateMin(Number value, String minValue) Check that the number value is greater than or equal to the minimum value.static ValidationResponseValidators.validateNegative(Number value) Check that the number value is negative.static ValidationResponseValidators.validateNegativeOrZero(Number value) Check that the number value is negative or zero.static ValidationResponseValidators.validateNotBlank(CharSequence value) Check that the string value is not blank.static ValidationResponseValidators.validateNotEmpty(CharSequence value) Check that the string value is not empty.static ValidationResponseValidators.validateNotNull(Object value) Check that the value is not null.static ValidationResponseValidators.validateNull(Object value) Check that the value is null.static ValidationResponseValidators.validatePattern(CharSequence value, String pattern) Check that the string value matches the specified pattern.static ValidationResponseValidators.validatePositive(Number value) Check that the number value is positive.static ValidationResponseValidators.validatePositiveOrZero(Number value) Check that the number value is positive or zero.TypeValidation.validateProperty(Class<?> type, String propertyName, Object value) Validate a value against a specific property of an object that is annotated withValidation.Validated.static ValidationResponseValidators.validateTrue(Boolean value) Check that the boolean value is true.