
com.avaje.ebean.validation.Patterns Maven / Gradle / Ivy
The newest version!
package com.avaje.ebean.validation;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
/**
* Holder for many Pattern Validation annotations.
*/
@Target({ ElementType.FIELD, ElementType.METHOD })
@Retention(RetentionPolicy.RUNTIME)
public @interface Patterns {
/**
* patterns to apply to a property.
*/
Pattern[] patterns();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy