Package com.google.caliper
Annotation Type AfterExperiment
-
@Target(METHOD) @Retention(RUNTIME) public @interface AfterExperiment
An annotation for methods to be run after an experiment has been performed.- See Also:
BeforeExperiment
-
-
Optional Element Summary
Optional Elements Modifier and Type Optional Element Description Class<? extends Annotation>valueA qualifier for which types of experiments this method should run.
-
-
-
Element Detail
-
value
Class<? extends Annotation> value
A qualifier for which types of experiments this method should run. For example, annotating a method with@AfterExperiment(Benchmark.class)will cause it to only run forBenchmarkexperiments. By default, annotated methods run for all experiments.- Default:
- com.google.caliper.All.class
-
-