Marker Interfaces

Interfaces without methods

3 min read

Marker Interfaces

Marker interfaces provide metadata to JVM or frameworks.

Code Examples

Serializable marker interface

java
1
2class MyClass implements Serializable {}
3          

Use Cases

  • Serialization
  • Cloning
  • Security checks

Common Mistakes to Avoid

  • Expecting methods in marker interface

AI Tutor

Ask about the topic

Sign in Required

Please sign in to use the AI tutor

Sign In