One of hundreds of answers available with our premium content service.
A: An interface typically represents something that is “Processable” in a particular way. Marker interfaces don't have any interface methods, they usually signify a property or state that any Java class may have that cannot be defined by a method signature. An example would be an Immutable interface, since a fundamental characteristic of immutable classes is the absence of mutator methods.
… full answer hidden
Premium members click below for full answer
Can you show an example marker interface?