Enum in Java
URL: https://www.progressiverobot.com/java-enum/ Enum was introduced in Java 1.5 as a new type whose fields consists of a fixed set of constants. For example, we can create directions as Java Enum with fixed fields as EAST, WEST, NORTH, and SOUTH. Java Enum !java enum, enums in java In this tutorial, we will learn know how to […]