Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
utils - added MoreAnnotations utility class
- Loading branch information
Showing
1 changed file
with
15 additions
and
0 deletions.
There are no files selected for viewing
15 changes: 15 additions & 0 deletions
15
restx-common/src/main/java/restx/common/MoreAnnotations.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
package restx.common; | ||
|
||
import com.google.common.base.Function; | ||
|
||
import java.lang.annotation.Annotation; | ||
|
||
public class MoreAnnotations { | ||
public static final Function<Annotation, Class<? extends Annotation>> EXTRACT_ANNOTATION_TYPE = new Function<Annotation, Class<? extends Annotation>>() { | ||
@Override | ||
public Class<? extends Annotation> apply(Annotation input) { | ||
return input.annotationType(); | ||
} | ||
}; | ||
|
||
} |