@Documented
@Retention(value=RUNTIME)
@Target(value={TYPE_USE,TYPE_PARAMETER})
@SubtypeOf(value=FenumTop.class)
public @interface Fenum
A generic fake enumeration qualifier that is parameterized by a name.
It is written in source code as, for example,
@Fenum("cardSuit") and @Fenum("faceValue"), which
would be distinct fake enumerations.
- See the Checker Framework Manual:
- Fake Enum Checker