io.konik.validator.NotBlankValidator Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of konik Show documentation
Show all versions of konik Show documentation
Konik the ZUGFeRD processing library
/* Copyright (C) 2014 konik.io
*
* This file is part of the Konik library.
*
* The Konik library is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* The Konik library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with the Konik library. If not, see .
*/
package io.konik.validator;
import io.konik.validator.annotation.NotBlank;
import javax.validation.ConstraintValidator;
import javax.validation.ConstraintValidatorContext;
/**
* = The Not Blank Validator.
*
* Validator for the {@link NotBlank} annotation.
*
* @see {@link NotBlank}
*/
public class NotBlankValidator implements ConstraintValidator {
/**
* Initialize.
*
* @param annotation the annotation
*/
@Override
public void initialize(NotBlank annotation) {
//no special initialization needed
}
/**
* Checks that the trimmed string is not Blank.
*
* @param charSequence The character sequence to validate.
* @param constraintValidatorContext context in which the constraint is evaluated.
*
* @return Returns +true+ if the string is +null+ or the length of +charSequence+ is greater zero omitting leading
* and trailing whitespace.
* Otherwise it will return +false+.
*/
@Override
public boolean isValid(CharSequence charSequence, ConstraintValidatorContext constraintValidatorContext) {
if (charSequence == null) { return true; }
return charSequence.toString().trim().length() > 0;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy