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

com.develhack.annotation.assertion.Nonempty Maven / Gradle / Ivy

There is a newer version: 0.9.3
Show newest version
package com.develhack.annotation.assertion;

import java.lang.annotation.Documented;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;

/**
 * Asserts that the value must be non-null and non-empty.
 */
@Documented
@Target({ ElementType.PARAMETER, ElementType.FIELD })
@Retention(RetentionPolicy.RUNTIME)
public @interface Nonempty {}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy