Backend Development
Java 8 Optional Usage
Introduction An Optional is a container object which may or may not contain a non-null value. It was introduced in Java 8 to cure the curse of NullPointerExceptions. In essence Optional is a wrapper class which contains a reference to some other object. In this context an object is just Read more…