com.github.ahant.validator.annotation.FieldInfo.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of field-validator Show documentation
Show all versions of field-validator Show documentation
Annotation based input field validator.
The newest version!
package com.github.ahant.validator.annotation
import com.github.ahant.validator.validation.FieldValidatorType
/**
* Created by ahant on 8/28/2016.
*/
@Target(AnnotationTarget.FIELD)
@MustBeDocumented
annotation class FieldInfo(
val name: String = "",
val optional: Boolean = true,
val validatorType: FieldValidatorType = FieldValidatorType.DEFAULT)
© 2015 - 2025 Weber Informatics LLC | Privacy Policy