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

com.signalfx.shaded.checkerframework.checker.formatter.qual.FormatBottom Maven / Gradle / Ivy

package com.signalfx.shaded.checkerframework.checker.formatter.qual;

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;
import com.signalfx.shaded.checkerframework.framework.qual.DefaultFor;
import com.signalfx.shaded.checkerframework.framework.qual.SubtypeOf;
import com.signalfx.shaded.checkerframework.framework.qual.TargetLocations;
import com.signalfx.shaded.checkerframework.framework.qual.TypeUseLocation;

/**
 * The bottom type in the Format String type system. Programmers should rarely write this type.
 *
 * @checker_framework.manual #formatter-checker Format String Checker
 * @checker_framework.manual #bottom-type the bottom type
 */
@Documented
@Retention(RetentionPolicy.RUNTIME)
@Target({ElementType.TYPE_USE, ElementType.TYPE_PARAMETER})
@TargetLocations({TypeUseLocation.EXPLICIT_LOWER_BOUND, TypeUseLocation.EXPLICIT_UPPER_BOUND})
@SubtypeOf({Format.class, InvalidFormat.class})
@DefaultFor(value = {TypeUseLocation.LOWER_BOUND})
public @interface FormatBottom {}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy