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

com.github.fashionbrot.validated.annotation.NotEqualSize Maven / Gradle / Ivy

There is a newer version: 2.0.9
Show newest version
package com.github.fashionbrot.validated.annotation;

import java.lang.annotation.*;

@Documented
@Target({ElementType.TYPE, ElementType.PARAMETER})
@Retention(RetentionPolicy.RUNTIME)
@Mars
public @interface NotEqualSize {

    int size() default 0;

    String msg() default "com.spv.valid.NotEqualSize.msg";
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy