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

com.signalfx.shaded.checkerframework.checker.signature.qual.FqBinaryName Maven / Gradle / Ivy

There is a newer version: 1.0.41
Show newest version
package com.signalfx.shaded.checkerframework.checker.signature.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.SubtypeOf;

/**
 * An extension of binary name format to represent primitives and arrays. It is just like
 * fully-qualified name format, but uses "$" rather than "." to indicate a nested class.
 *
 * 

Examples include * *

 *   int
 *   int[][]
 *   java.lang.String
 *   java.lang.String[]
 *   pkg.Outer$Inner
 *   pkg.Outer$Inner[]
 * 
* *

This is not a format defined by the Java language or platform, but is a convenient format for * users to unambiguously specify a type. * * @checker_framework.manual #signature-checker Signature Checker */ @Documented @Retention(RetentionPolicy.RUNTIME) @Target({ElementType.TYPE_USE, ElementType.TYPE_PARAMETER}) @SubtypeOf(SignatureUnknown.class) public @interface FqBinaryName {}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy