Skip to content

Instantly share code, notes, and snippets.

@sasssass
Created June 17, 2024 07:40
Show Gist options
  • Save sasssass/ffa8713a3ded419f5280bd9eb9ba5bee to your computer and use it in GitHub Desktop.
Save sasssass/ffa8713a3ded419f5280bd9eb9ba5bee to your computer and use it in GitHub Desktop.
AnnotationRetention.kt
public enum class AnnotationRetention {
/** Annotation isn't stored in binary output */
SOURCE,
/** Annotation is stored in binary output, but invisible for reflection */
BINARY,
/** Annotation is stored in binary output and visible for reflection (default retention) */
RUNTIME
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment