net.virtalab.vson.annotation.EmptyAllowed Maven / Gradle / Ivy
package net.virtalab.vson.annotation;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
/**
* Indicates that element can be empty: 0 chars for String.
*/
@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.FIELD)
public @interface EmptyAllowed {
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy