向Android Saripaar添加自定义注释

前端之家收集整理的这篇文章主要介绍了向Android Saripaar添加自定义注释前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我刚刚开始使用 android saripaar库来为客户端应用程序.我想添加一个字段的自定义验证.但是,似乎没有办法创建自定义注释.我必须在验证器中手动放入规则.

如何创建相同的自定义注释?

解决方法

(披露:我是作者)

Saripaar v2允许您定义自定义注释.

这是你做的事情.

步骤1如下定义您的自定义注释.确保您有一个RUNTIME保留策略,并且您的注释必须针对FIELD元素类型.消息和messageResId属性是必需的,因此请注意名称和类型.

@ValidateUsing(HaggleRule.class)
@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.FIELD)
public @interface Haggle {
    public int messageResId()   default -1;                     // Mandatory attribute
    public String message()     default "Oops... too pricey";   // Mandatory attribute
    public int sequence()       default -1;                     // Mandatory attribute

    public double maximumAskingPrice();                         // Your attributes
}

步骤2通过扩展AnnotationRule类定义您的规则.

public class HaggleRule extends AnnotationRule<Haggle,Double> {

    protected HaggleRule(Haggle haggle) {
        super(haggle);
    }

    @Override
    public boolean isValid(Double data) {
        boolean isValid = false;
        double maximumAskingPrice = mRuleAnnotation.maximumAskingPrice();

        // Do some clever validation....

        return isValid;
    }
}

步骤3注册您的规则.

Validator.registerAnnotation(Haggle.class); // Your annotation class instance

就那么简单.看看源代码,如果你想的话. Saripaar v2现已在Maven Central上市.

原文链接:https://www.f2er.com/android/312074.html

猜你在找的Android相关文章