Optional class =
Optional is a container object which is used to contain not-null objects. An Optional object is used to represent null with absent value. This class has various utility methods to facilitate code to handle values as ‘available’ or ‘not available’ instead of checking null values.
Being a java programmer you have seen `NullPointerException` many times.
Java SE 8 introduces a new class called java.util.Optional that solves some of the problems caused by the null reference.
Class Optional<T>
java.lang.Object
Declaration for java.util.Optional<T> class
public final class Optional<T>
extends Object
This class inherits methods from the java.lang.Object class.
A container object which may or may not contain a non-null value. If a value is present, isPresent() will return true and get() will return the value. Additional methods that depend on the presence or absence of a contained value are provided, such as orElse() (return a default value if value not present) and ifPresent() (execute a block of code if the value is present).
This is a value-based class; use of identity-sensitive operations (including reference equality (==), identity hash code, or synchronization) on instances of Optional may have unpredictable results and should be avoided.
Example -
import java.util.Optional;
public class OptionalExample {
public static void main(String args[]){
OptionalExample optionalExample = new OptionalExample();
Integer value1 = null;
Integer value2 = new Integer(15);
//Optional.ofNullable - allows passed parameter to be null.
Optional<Integer> a = Optional.ofNullable(value1);
//Optional.of - throws NullPointerException if passed parameter is null
Optional<Integer> b = Optional.of(value2);
System.out.println(optionalExample.sum(a,b));
}
public int sum(Optional<Integer> a, Optional<Integer> b){
//Optional.isPresent - checks the value is present or not
System.out.println("First parameter is present: " + a.isPresent());
System.out.println("Second parameter is present: " + b.isPresent());
//Optional.orElse - returns the value if present otherwise returns the default value passed.
int value1 = a.orElse(0);
//Optional.get - gets the value, value should be present
int value2 = b.get();
return value1 + value2;
}
}
Output
First parameter is present: false
Second parameter is present: true
15