The marker interface pattern is a design pattern in computer science, used with languages that provide run-time type information about objects. It provides a means to associate metadata with a class where the language does not have explicit support for such metadata.
To use this pattern, a class implements a marker interface, and methods that interact with instances of that class test for the existence of the interface. Whereas a typical interface specifies functionality (in the form of method declarations) that an implementing class must support, a marker interface need not do so. The mere presence of such an interface indicates specific behavior on the part of the implementing class. Hybrid interfaces, which both act as markers and specify required methods, are possible but may prove confusing if improperly used.
An example of the application of marker interfaces from the Java programming language is the Serializable
interface. A class implements this interface to indicate that its non-transient data members can be written to an ObjectOutputStream
. The ObjectOutputStream
private method writeObject
contains a series of instanceof
tests to determine writeability, one of which looks for the Serializable
interface. If any of these tests fails, the method throws a NotSerializableException
.
Read more about Marker Interface Pattern: Critique
Famous quotes containing the words marker and/or pattern:
“Personal change, growth, development, identity formationthese tasks that once were thought to belong to childhood and adolescence alone now are recognized as part of adult life as well. Gone is the belief that adulthood is, or ought to be, a time of internal peace and comfort, that growing pains belong only to the young; gone the belief that these are marker eventsa job, a mate, a childthrough which we will pass into a life of relative ease.”
—Lillian Breslow Rubin (20th century)
“For what is wedlock forcèd, but a hell,
An age of discord and continual strife?
Whereas the contrary bringeth bliss,
And is a pattern of celestial peace.”
—William Shakespeare (15641616)