Java8 notes I

  • java.util.Optional

    Imagine Optional as a container that may or may not contain some value. Just like all references in Java can point to some object or be null, Option may enclose some (non-null!) reference or be empty.

Optional instead of plain null is statically checked at compile time and much more informative as it clearly indicates that a given variable may be present or not. Of course it requires some discipline - you should never assign null to any variable any more.

There are few ways of creating Optional:

\\Optional must contain not null value and will throw an exception if null is passed. 
opt = Optional.of(notNull);

\\ofNullable() will either return empty or present (set) Optional.
opt = Optional.ofNullable(mayBeNull);

\\empty() always return empty Optional, corresponding to null. It’s a singleton because Optional<T> is immutable.
opt = Optional.empty();

In this case, opt is never null, but may or may not contain some value (present or empty).

  • ifPresent() - do something when Optional is set

Tedious if statement:

if (x != null) {
print(x);
}

can be replaced with higher-order function ifPresent():

opt.ifPresent(x -> print(x));
opt.ifPresent(this::print);

The latter syntax (method reference) can be used when lambda argument (String x) matches function formal parameters.

  • filter() - reject (filter out) certain Optional values

Sometimes you want to perform some action not only when a reference is set but also when it meets certain condition:

if (x != null && x.contains("ab")) {
print(x);
}

This can be replaced with Optional.filter() that turns present (set) Optional to empty Optional if underlying value does not meet given predicate. If input Optional was empty, it is returned as-is:

opt.
filter(x -> x.contains("ab")).
ifPresent(this::print);
```
This is equivalent to more imperative:
```java
if(opt.isPresent() && opt.get().contains("ab")) {
print(opt.get());
}

  • map() - transform value if present

Very often you need to apply some transformation on a value, but only if it’s not null (avoiding NullPointerException):

if (x != null) {
String t = x.trim();
if (t.length() > 1) {
print(t);
}
}

This can be done in much more declarative way using map():

opt.
map(String::trim).
filter(t -> t.length() > 1).
ifPresent(this::print);

This becomes tricky. Optional.map() applies given function on a value inside Optional - but only if Optional is present. Otherwise nothing happens and empty() is returned. Remember that the transformation is type-safe - look at generics here:

Optional<String>  opt = //...
Optional<Integer> len = opt.map(String::length);

If Optional<String> is present. Optional<Integer> len is present as well, wrapping length of a String. But if opt was empty, map() over it does nothing except changing generic type.

  • orElse()/orElseGet() - turning empty Optional<T> to default T

At some point you may wish to unwrap Optional and get a hold of real value inside. But you can’t do this if Optional is empty. Here is a pre-Java 8 way of handling such scenario:

int len = (x != null)? x.length() : -1;

With Optional we can say:

int len = opt.map(String::length).orElse(-1);

There is also a version that accepts Supplier<T> if computing default value is slow, expensive or has side-effects:

int len = opt.
map(String::length).
orElseGet(() -> slowDefault());
//orElseGet(this::slowDefault)

  • orElseThrow() - lazily throw exceptions on empty Optional

Often we would like to throw an exception if value is not available:

public char firstChar(String s) {
if (s != null && !s.isEmpty())
return s.charAt(0);
else
throw new IllegalArgumentException();
}

This whole method can be replaced with the following idiom:

opt.
filter(s -> !s.isEmpty()).
map(s -> s.charAt(0)).
orElseThrow(IllegalArgumentException::new);
```
We don’t want to create an instance of exception in advance because creating an exception has _significant cost_.

* ##### **flatMap()** - _mapping over a function that returns `Optional`_

Imagine you have a function that does not accept null but may produce one:
```java
public String findSimilar(@NotNull String s) //...

Using it is a bit cumbersome:

String similarOrNull = x != null? findSimilar(x) : null;

With Optional it is a bit more straighforward:

Optional<String> similar = opt.map(this::findSimilar);

If the function we map() over returns null, the result of map() is an empty Optional. Otherwise it’s the result of said function wrapped with (present) Optional. So far so good but why do we return nullable value if we have Optional?

public Optional<String> tryFindSimilar(String s)  //...

Our intentions are clear but using map() fails to produce correct type. Instead we must use flatMap():

Optional<Optional<String>> bad = opt.map(this::tryFindSimilar);
Optional<String> similar = opt.flatMap(this::tryFindSimilar);

Do you see double Optional<Optional<...>>? Definitely not what we want. If you are mapping over a function that returns Optional, use flatMap instead. Here is a simplified implementation of this function:

public <U> Optional<U> flatMap(Function<T, Optional<U>> mapper) {
if (!isPresent())
return empty();
else {
return mapper.apply(value);
}
}

Bigger example

Imagine we have a Person with an Address that has a validFrom date. All of these can be null. We would like to know whether validFrom is set and in the past:

private boolean validAddress(NullPerson person) {
if (person != null) {
if (person.getAddress() != null) {
final Instant validFrom = person.getAddress().getValidFrom();
return validFrom != null && validFrom.isBefore(now());
} else
return false;
} else
return false;
}

Quite ugly and defensive. Alternatively but still ugly:

return person != null &&
person.getAddress() != null &&
person.getAddress().getValidFrom() != null && person.getAddress().getValidFrom().isBefore(now());

Now imagine all of these (person, getAddress(), getValidFrom()) are Optionals of appropriate types, clearly indicating they may not be set:

class Person {

private final Optional<Address> address;

public Optional<Address> getAddress() {
return address;
}

//...
}

class Address {
private final Optional<Instant> validFrom;

public Optional<Instant> getValidFrom() {
return validFrom;
}

//...
}

Suddenly the computation is much more streamlined:

return person.
flatMap(Person::getAddress).
flatMap(Address::getValidFrom).
filter(x -> x.before(now())).
isPresent();
```
Is it more readable? Hard to tell. But at least it’s impossible to produce NullPointerException when Optional is used consistently.

* ##### **Converting Optional<T> to List<T>**

Thinking about Optional as a collection1 having either 0 or 1 elements, this may make understanding of map() and flatMap() easier. Unfortunately Optional doesn’t have toList() method, but it’s easy to implement one:
```java
public static <T> List<T> toList(Optional<T> option) {
return option.
map(Collections::singletonList).
orElse(Collections.emptyList());
}

Or less idiomatically:

public static <T> List<T> toList(Optional<T> option) {
if (option.isPresent())
return Collections.singletonList(option.get());
else
return Collections.emptyList();
}

But why limit ourselves to List? What about Set and other collections? Java 8 already abstracts creating arbitrary collection via Collectors API, introduced for Streams. The API is hideous but comprehensible:

public static <R, A, T> R collect(Optional<T> option, Collector<? super T, A, R> collector) {
final A container = collector.supplier().get();
option.ifPresent(v -> collector.accumulator().accept(container, v));
return collector.finisher().apply(container);
}

We can now say:

import static java.util.stream.Collectors.*;

List<String> list = collect(opt, toList());
Set<String> set = collect(opt, toSet());

Ref:

  1. Optional in Java 8 cheat sheet