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

com.neko233.toolchain.validator.annotation.RegexFormat Maven / Gradle / Ivy

package com.neko233.toolchain.validator.annotation;

import java.lang.annotation.*;

/**
 * 正则格式
 */
@Documented
@Target(ElementType.FIELD)
@Retention(RetentionPolicy.RUNTIME)
public @interface RegexFormat {

    String tips() default "";

    String regexFormat();

}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy