Effective Java! Use Marker Interfaces to Define Types

Kyle Carter
2 min readJun 6, 2021

In this chapter marker interfaces and marker annotations are discussed. A marker interface is an interface that has no method declarations but simply is used to mark an implementing class as having a certain attribute. An example of a marker interface is the Serializable interface built into the core of Java. Another similar thing you may hear about is of marker annotations. These serve a similar purpose of marking a specific item as having an attribute but, as the name suggests, uses an annotation instead of an interface to accomplish its task. So should we use…

--

--

Kyle Carter

I'm a software architect that has a passion for software design and sharing with those around me.