Instantiate Optinal Java 8

Person p = new Person();
Optional<Person> op = Optional.of(p); 
Difficult Dugong