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

org.jsoup.internal.NonnullByDefault Maven / Gradle / Ivy

There is a newer version: 2024.q3.1
Show newest version
package org.jsoup.internal;

import javax.annotation.Nonnull;
import javax.annotation.meta.TypeQualifierDefault;
import java.lang.annotation.Documented;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;

@Documented
@Nonnull
@TypeQualifierDefault({ElementType.METHOD, ElementType.PARAMETER, ElementType.FIELD})
@Retention(value = RetentionPolicy.CLASS)

/**
 Indicates that all components (methods, returns, fields) are not nullable, unless otherwise specified by @Nullable.
 @see javax.annotation.ParametersAreNonnullByDefault
 */
public @interface NonnullByDefault {
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy