All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.neko233.toolchain.validator.impl.CheckBooleanValidator Maven / Gradle / Ivy

package com.neko233.toolchain.validator.impl;

import com.neko233.toolchain.common.base.StringUtils233;
import com.neko233.toolchain.validator.ValidateApi;
import com.neko233.toolchain.validator.annotation.CheckBoolean;

/**
 * boolean Validator
 */
public class CheckBooleanValidator implements ValidateApi {

    @Override
    public Class getAnnotationType() {
        return CheckBoolean.class;
    }

    @Override
    public boolean validateOk(CheckBoolean annotation, Boolean fieldValue) {
        if (fieldValue == null) {
            return false;
        }
        if (annotation.isMustTrue()) {
            if (fieldValue == false) {
                return false;
            }
        }
        if (annotation.isMustFalse()) {
            if (fieldValue == true) {
                return false;
            }
        }

        return true;

    }

    @Override
    public String getReason(CheckBoolean annotation, String fieldName, Boolean fieldValue) {
        return StringUtils233.format("tips = {}. field = {}. value is {}", annotation.tips(), fieldName, fieldValue);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy