Skip to content

Instantly share code, notes, and snippets.

@jerrinot
Created February 21, 2014 13:21
Show Gist options
  • Save jerrinot/9134097 to your computer and use it in GitHub Desktop.
Save jerrinot/9134097 to your computer and use it in GitHub Desktop.
@Deprecated
public class HelloWorld implements Serializable {
@GenerateMicroBenchmark
public boolean instanceOfTest() {
return this instanceof Serializable;
}
@GenerateMicroBenchmark
public boolean annotationTest() {
return this.getClass().isAnnotationPresent(Deprecated.class);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment