Annotation Interface Unimplemented
@Target(METHOD)
@Retention(SOURCE)
@Repeatable(UnimplementedRepeatable.class)
public @interface Unimplemented
Literally just a fancy comment that I can put next to stuff to know why
something wasn't implemented. Retention Policy is source, so it doesn't get
carried over to the compiled code. Again, literally just a fancy comment.
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic enumThe reason why this method was unimplemented -
Required Element Summary
Required ElementsModifier and TypeRequired ElementDescriptionA reason why this method hasn't been implemented -
Optional Element Summary
Optional Elements
-
Element Details
-
because
Unimplemented.REASON[] becauseA reason why this method hasn't been implemented- Returns:
- a reason why this method hasn't been implemented
-
-
-
from
String from- Returns:
- description
- Default:
- ""
-
to
String to- Returns:
- description
- Default:
- ""
-
in
String in- Returns:
- description
- Default:
- ""
-
introducedIn
String introducedIn- Returns:
- description
- Default:
- ""
-
classNamed
String classNamed- Returns:
- description
- Default:
- ""
-
info
String info- Returns:
- description
- Default:
- ""
-