Implementing Simple State Machines with Java Enums Algorithms Java 1. Overview In this tutorial, we’ll have a look at State Machines and how they can be implemented in Java using Enums. We’ll also explain the advantages of this implementation compared to using an interface and a concrete class for each… Continue Reading java-enum-simple-state-machine

Java Global Exception Handler 1. Overview In this tutorial, we’ll focus on the Global Exception Handler in Java. We’ll first discuss the basics of the exceptions and the exception handling. Then we’ll have a comprehensive look on the global exception handler. To learn more about the exceptions in general, have… Continue Reading java-global-exception-handler