This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /** | |
| * For Java developers all excited by and jealous of Kotlin's sealed classes. | |
| * Do this when you wish you could put parameters on an enum. | |
| */ | |
| public class PoorMan { | |
| private interface Event { | |
| <T> T dispatch(EventHandler<T> handler); | |
| } | |
| interface EventHandler<T> { |