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

com.cybermkd.constraints.Chinese Maven / Gradle / Ivy

There is a newer version: 1.0.8.2
Show newest version
package com.cybermkd.constraints;

/**
 * 创建人:T-baby
 * 创建日期: 16/8/3
 * 文件描述:
 */

import com.cybermkd.validation.ChineseValidator;

import javax.validation.Constraint;
import javax.validation.Payload;
import java.lang.annotation.Documented;
import java.lang.annotation.Retention;
import java.lang.annotation.Target;

import static java.lang.annotation.ElementType.*;
import static java.lang.annotation.RetentionPolicy.RUNTIME;

@Target({METHOD, FIELD, ANNOTATION_TYPE})
@Retention(RUNTIME)
@Constraint(validatedBy = ChineseValidator.class)
@Documented
public @interface Chinese {

    String message() default "{com.cybermkd.constraints.Chinese.message}";

    Class[] groups() default {};

    Class[] payload() default {};

    boolean value();

}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy