int API_VERSION = 21;
@TargetApi(API_VERSION) is used in Android to specify that the method/class is supported for API_VERSION and below.
Can we mirror something similar which specifies that a method or class is supported for API_VERSION and above only?
Note:- I did not find any such annotation, but would like to ask the community if they have come across something like this or have implemented their own annotation?