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

com.google.errorprone.annotations.FormatMethod Maven / Gradle / Ivy

package com.google.errorprone.annotations;

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;

/**
 * Annotation for a method that takes a printf-style format string as an argument followed by
 * arguments for that format string.
 */
@Documented
@Retention(RetentionPolicy.RUNTIME)
@Target({ElementType.METHOD, ElementType.CONSTRUCTOR})
public @interface FormatMethod {}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy