Search Results for: java 8
-
Enum
Each Enum Instance a different sub-class
In this example we shall show you how to have each enum instance represent a different sub-class. To make each enum…
Read More » -
Enum
Enum to implement an interface
With this example we are going to demonstrate how to use an enum to implement an interface. Implementing an interface…
Read More » -
Enum
Enum for Singleton and Utility class
enum Singleton { INSTANCE; } enum Utility { ; // no instances } Related Article: Java Secret: Using an enum…
Read More » -
operators
Modulo Operator
In this example we shall show you how to use the modulo operator. The modulo operator is an arithmetic operator that…
Read More »