Skip to content

Instantly share code, notes, and snippets.

View Aayush-Aggarwal's full-sized avatar

Ayush Aggarwal Aayush-Aggarwal

View GitHub Profile
@Aayush-Aggarwal
Aayush-Aggarwal / Demo
Last active March 8, 2018 11:37
Demo for optional methods.
import java.util.Optional;
public class Demo {
class Person {
private String name = "Hello To Optional";
public Optional<String> getName() {
return Optional.ofNullable(name);
}
}