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

org.hamcrest.Factory Maven / Gradle / Ivy

There is a newer version: 2.12.15
Show newest version
package org.hamcrest;

import static java.lang.annotation.ElementType.METHOD;
import java.lang.annotation.Retention;
import static java.lang.annotation.RetentionPolicy.RUNTIME;
import java.lang.annotation.Target;

/**
 * Marks a Hamcrest static factory method so tools recognise them.
 * A factory method is an equivalent to a named constructor.
 * 
 * @author Joe Walnes
 */
@Retention(RUNTIME)
@Target({METHOD})
public @interface Factory {
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy