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

JavaPlayFramework.beanValidation.mustache Maven / Gradle / Ivy

There is a newer version: 7.7.0
Show newest version
{{#required}}
@NotNull
{{/required}}
{{#pattern}}
@Pattern(regexp="{{{.}}}")
{{/pattern}}
{{#minLength}}
{{#maxLength}}
@Size(min={{minLength}},max={{maxLength}})
{{/maxLength}}
{{/minLength}}
{{#minLength}}
{{^maxLength}}
@Size(min={{minLength}})
{{/maxLength}}
{{/minLength}}
{{^minLength}}
{{#maxLength}}
@Size(max={{.}})
{{/maxLength}}
{{/minLength}}
{{#minItems}}
{{#maxItems}}
@Size(min={{minItems}},max={{maxItems}})
{{/maxItems}}
{{/minItems}}
{{#minItems}}
{{^maxItems}}
@Size(min={{minItems}})
{{/maxItems}}
{{/minItems}}
{{^minItems}}
{{#maxItems}}
@Size(max={{.}})
{{/maxItems}}
{{/minItems}}
{{! check for integer / number=decimal type}}
{{#isInteger}}
{{#minimum}}
@Min({{.}})
{{/minimum}}
{{#maximum}}
@Max({{.}})
{{/maximum}}
{{/isInteger}}
{{^isInteger}}
{{#minimum}}
@DecimalMin("{{.}}")
{{/minimum}}
{{#maximum}}
@DecimalMax("{{.}}")
{{/maximum}}
{{/isInteger}}
{{^isPrimitiveType}}
@Valid
{{/isPrimitiveType}}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy