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.
- Optional.empty()
- Optional.of(T)
- Optional.ofNullable(ref)
| Name | Name | Last commit date | ||
|---|---|---|---|---|
parent directory.. | ||||
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.