(Class<A> annotationType)
| 112 | // @Override on JDK8 |
| 113 | |
| 114 | @Nullable |
| 115 | public <A extends Annotation> A getDeclaredAnnotation(Class<A> annotationType) { |
| 116 | checkNotNull(annotationType); |
| 117 | return FluentIterable.from(annotations).filter(annotationType).first().orNull(); |
| 118 | } |
| 119 | |
| 120 | /** |
| 121 | * @since 18.0 |
nothing calls this directly
no test coverage detected