Friends of OpenJDK Today

Optional in Java: A Swiss Army Knife for Handling Nulls and Improving Code Quality

February 01, 2023          

Author(s)

  • A N M Bazlur Rahman

    A N M Bazlur Rahman is a Software Engineer with over a decade of specialized experience in Java and related technologies. His expertise has been formally recognized through the prestigious ... Learn more

In Java, dealing with null values can be a real headache. Nulls can cause all sorts of problems in your code, from NullPointerExceptions to convoluted if statements and error-prone logic. Fortunately, Java 8 introduced the Optional class, which offers a simple and powerful way to handle nulls and improve code quality. Optional is a container object that may or may not contain a non-null value and provides a range of practical methods for working with its contents. In this article, we'll explore the many use cases of Optional in Java and show you how to use this powerful class to write cleaner, more expressive, and more resilient code.

So let's deep dive into a few examples of uses of Optionals.

Avoiding NullPointerExceptions

One of the most common use cases of Optional is to avoid NullPointerExceptions. By wrapping a potentially null value in an Optional, you can safely access the value without risking a NullPointerException. For example, if you have a method that returns a value that might be null, you can return an Optional instead and then use Optional methods to access the value safely.

String value = null;
Optional<String> optionalValue = Optional.ofNullable(value);
if (optionalValue.isPresent()) {
    System.out.println(optionalValue.get());
}

In this example, we created an Optional from a potentially null value. We then use the Optional.isPresent() method to check if the value is present, and use Optional.get() to access the value safely.

Simplifying Exception Handling ​​

Another compelling use case of Optional is to simplify exception handling. You can use the Optional.orElseThrow() method to throw an exception if the value is not present. This can make your code more concise and easier to read, especially when handling multiple potential exceptions. Example-

Optional<String> optionalValue = Optional.empty();
String value = optionalValue.orElseThrow(() -> new RuntimeException("Value is not present!"));

In this example, we create an empty Optional and use Optional.orElseThrow() to throw a RuntimeException if the value is not present. This simplifies the exception-handling code and makes it more concise and readable.

Delaying error handling to the caller

An Optional in Java is also very good for delaying the decision of what needs to happen in case it goes wrong in a higher context. Instead of the function deciding the behaviour (kill the thread or use a default value), the caller can now decide what is best in the caller's context.

Suppose we have a method that searches for a book in a library given the book's ISBN:

public static Book searchBook(String isbn) {
    Library library = Library.getInstance();
    Book book = library.searchByISBN(isbn);
    if (book != null) {
        return book;
    } else {
        throw new IllegalArgumentException("Book with ISBN " + isbn + " not found in the library");
    }
}

This method throws an exception if the book with the given ISBN is not found in the library. The decision on how to handle this error is made by the method itself. Now, let's modify this method to use Optional to delay error handling to the caller:

public static Optional<Book> searchBook(String isbn) {
    Library library = Library.getInstance();
    Book book = library.searchByISBN(isbn);
    if (book != null) {
        return Optional.of(book);
    } else {
        return Optional.empty();
    }
}

In this modified version, if the book with the given ISBN is not found in the library, the method returns an empty Optional, indicating an error has occurred. Otherwise, it returns an Optional containing the book.

Now, the caller of this method can decide how to handle the error. Here's an example:

Optional<Book> book = searchBook("9780132350884");
if (book.isPresent()) {
    System.out.println("Book title: " + book.get().getTitle());
} else {
    System.out.println("Error: book not found");
}

In this example, the caller will print an error message if the book with the given ISBN is not found in the library. Otherwise, it will print the title of the book. The caller now decides how to handle the error, not the method itself.

Thanks to my friend for sharing this one.

Chaining Optional Values

We can also chain Optional values using the Optional.flatMap() method. This can be useful for accessing values that are nested within other objects. For example, if you have an object that contains another object that might be null, you can use Optional.flatMap() to access the nested value without risking a NullPointerException.

Optional<Author> optionalAuthor = Optional.ofNullable(book)
                                          .flatMap(Book::getAuthor);

In this example, we chain two Optional values using Optional.flatMap(). We create an Optional from a potentially null book object and then use Optional.flatMap() to access the author value if it is present. This simplifies the code and avoids the need for null checks.

Defining Default Values

Optional can also be used to define default values for missing or null values. You can use Optional.orElse() to specify a default value to return if the Optional is empty. This can make your code more resilient and reduce the likelihood of errors caused by null or missing values.

String value = null;
String defaultValue = "default";
String result = Optional.ofNullable(value)
                        .orElse(defaultValue);

In this example, we created an Optional from a potentially null value, and used Optional.orElse() to specify a default value if the Optional is empty. This makes the code more resilient and avoids errors caused by null or missing values.

Avoiding Boilerplate Code

By using Optional, you can avoid writing boilerplate code to check for null values. Optional provides a concise and expressive way to handle null values, which can make your code more readable and maintainable. For example, you can use Optional.map() to perform a transformation on a value only if it is present, without having to write an if statement to check for null. Example-

String value = null;
Optional<String> optionalValue = Optional.ofNullable(value);
String result = optionalValue.map(s -> s.toUpperCase())
                            .orElse("default");

In this example, we create an Optional from a potentially null value, and use Optional.map() to perform a transformation on the value only if it is present. This avoids the need for an if statement to check for null, and makes the code more concise and readable.

Facilitating Method Composition

Optional can be used to compose methods together more concisely and expressively. By wrapping the return value of a method in an Optional, you can use Optional methods to chain multiple methods calls together. This can make your code more readable and easier to understand. For example:

Optional<String> optionalValue = Optional.of("Hello")
                                         .map(s -> s.toUpperCase())
                                         .filter(s -> s.startsWith("H"));

In this example, we create an Optional from a string, use Optional.map() to convert it to uppercase, and then use Optional.filter() to remove any values that do not start with "H". This allows us to compose multiple methods calls together in a single expression.

Handling Optional Collections

Optional can be used to handle collections of Optional values in a more concise and readable way. For example, if you have a collection of Optional values, you can use Optional.stream() to create a stream of non-empty values, and then use stream methods to perform operations on the values. This can make your code more expressive and easier to understand. For example:

List<Optional<String>> optionalList = Arrays.asList(Optional.empty(),
                                                     Optional.of("Bazlur"),
                                                     Optional.of("Rahman"));

String result = optionalList.stream()
                            .flatMap(Optional::stream)
                            .collect(Collectors.joining(" "));

In this example, we create a list of Optional values, use Optional.stream() to create a stream of non-empty values, and then use stream methods to join the non-empty values into a single string. This allows us to handle collections of Optional values more elegantly and expressively.

Simplifying Configurations

Optional can simplify configuration management by providing a default value for a configuration parameter. For example, if you have a configuration parameter that might be missing, you can use Optional to provide a default value if the parameter is not present. This can make your code more resilient and easier to maintain. For example:

String value = Optional.ofNullable(System.getProperty("my.property"))
                       .orElse("default");

In this example, we create an Optional from a system property value and use Optional.orElse() to specify a default value if the property is not present. This makes the configuration more resilient and avoids errors caused by missing configuration parameters.

Simplifying Method Signatures

Optional can be used to simplify method signatures by allowing methods to return Optional values. This can provide a concise and expressive way to indicate that a value might be missing. For example:

Optional<String> findValue(String key);

In this example, we define a method that returns an Optional value, indicating that the value might be missing. This provides a concise and expressive way to indicate that the method might not return a value, and avoids the need for null checks.

Providing Default Implementation

Optional can be used to provide default implementations for methods that might not be implemented. This can simplify code by providing a default behavior that can be overridden if necessary. For example:

public interface UserService {
      default Optional<UserPrincipal> getUserPrincipal(){

         return Optional.empty();
     }
}

In this example, we define an interface that provides a default implementation for a method that returns an Optional value. This simplifies the implementation of the interface and provides a default behavior that can be overridden if necessary.

Enhancing Readability

Optional can be used to enhance the readability of code by providing a clear and concise way to handle null values. For example, instead of writing code that checks for null values using if statements, you can use Optional methods to handle null values more elegantly. This can make your code more readable and easier to understand. For example:

Optional.ofNullable(value)
        .ifPresentOrElse(v -> doSomething(v), () -> doSomethingElse());

In this example, we create an Optional from a potentially null value, and use Optional.ifPresentOrElse() to perform one action if the value is present, and a different action if the value is not present. This provides a clear and concise way to handle null values, and makes the code more readable and maintainable.

Enabling Method Composition

Optional can be used to enable method composition by providing a way to chain method calls together concisely and expressively. This can make your code more expressive and easier to read. For example:

Optional.ofNullable(value)
        .map(v -> v.toUpperCase())
        .filter(v -> v.startsWith("A"))
        .ifPresent(v -> doSomething(v));

In this example, we create an Optional from a potentially null value, use Optional.map() to convert it to uppercase, use Optional.filter() to remove any values that do not start with "A", and then use Optional.ifPresent() to perform an action if the value is present. This provides a clear and concise way to chain method calls together and makes the code more expressive and readable.

Handling Complex Object

Optional can be used to handle complex objects that contain optional values. This can make your code more resilient and easier to maintain. For example:

Optional<Color> colorOptional = Optional.ofNullable(square)
                .map(Square::upperLeft)
                .map(ColoredPoint::color);

In this example, we create an Optional from a potentially null object, use Optional.map() to access a sub-object, and then use Optional.map() to access a value in the sub-object. This allows us to handle complex objects more elegantly and expressively, making the code more resilient and maintainable.

Providing an Alternative Value

Optional can be used to provide an alternative value if a value is not present. This can make your code more resilient and easier to read. For example:

Optional<String> optionalValue = Optional.ofNullable(value)
                                         .or(() -> Optional.of("default"));                                   

In this example, we create an Optional from a potentially null value, and use Optional.or() to provide an alternative value if the value is not present. This allows us to handle missing values more elegantly and expressively.

Providing a Lazy Evaluation

Optional can be used to provide a lazy evaluation of a value that is expensive to compute. For example, if you have an expensive value, you can use Optional to defer the computation until the value is actually needed. This can improve the performance of your code by avoiding unnecessary computations. For example:

Optional<String> lazyValue = Optional.ofNullable(null)
                                      .map(v -> computeValue());            

In this example, we create an Optional from a potentially null value and use Optional.map() to defer the computation of the value until the value is actually needed. This provides a lazy evaluation of the value, and can improve the performance of the code.

Handling Multiple Optional Values

Optional can be used to handle multiple optional values more elegantly and expressively. For example, if you have multiple optional values that you need to handle, you can use Optional methods to combine and manipulate the values more expressively. For example:

Optional<String> optionalValue1 = Optional.of("Hello");
Optional<String> optionalValue2 = Optional.of("World");
Optional<String> result = optionalValue1.flatMap(v1 -> optionalValue2.map(v2 -> v1 + " " + v2));

In this example, we create two Optional values, use Optional.flatMap() and Optional.map() to combine the values into a single string, and then use the resulting Optional to perform additional operations. This provides a concise and expressive way to handle multiple optional values and makes the code more readable and maintainable.

Simplifying JPA Criteria Queries

Optional can be used to simplify the handling of JPA Criteria Queries in Java. For example, you can use Optional to handle cases where a criteria query might not have any results. This can make your code more expressive and easier to read. For example:

CriteriaBuilder cb = em.getCriteriaBuilder();
CriteriaQuery<User> cq = cb.createQuery(User.class);
Root<User> root = cq.from(User.class);
cq.where(cb.equal(root.get("id"), id));
TypedQuery<User> query = em.createQuery(cq);
Optional<User> result = query.getResultList().stream().findFirst();

In this example, we create a JPA Criteria Query, use Optional to handle the case where the query might not have any results, and then use the resulting Optional to perform additional operations. This provides a simple and expressive way to handle JPA Criteria Queries, and avoids null checks and if statements.

Simplifying Database Operations

Optional can be used to simplify database operations in Java. For example, you can use Optional to handle cases where a database query might not have any results. This can make your code more expressJavaand easier to read. For example:

Connection conn = ...;
PreparedStatement stmt = conn.prepareStatement("SELECT name FROM users WHERE id = ?");
stmt.setInt(1, id);
ResultSet rs = stmt.executeQuery();
Optional<String> name = rs.next() ? Optional.of(rs.getString("name")) : Optional.empty();

In this example, we create a database connection, prepare a statement, execute a query, and use Optional to handle cases where the query might not have any results. This provides a simple and expressive way to handle database operations and avoids null checks and if statements.

These are just a few more examples of how Optional can simplify and improve your Java code. By leveraging the capabilities of Optional, you can write more concise, expressive, and resilient code.

I hope you enjoyed the article; until next time, stay happy!

Topics:

Author(s)

  • A N M Bazlur Rahman

    A N M Bazlur Rahman is a Software Engineer with over a decade of specialized experience in Java and related technologies. His expertise has been formally recognized through the prestigious ... Learn more

Comments (0)

Your email address will not be published. Required fields are marked *

Highlight your code snippets using [code lang="language name"] shortcode. Just insert your code between opening and closing tag: [code lang="java"] code [/code]. Or specify another language.

Save my name, email, and website in this browser for the next time I comment.

Subscribe to foojay updates:

https://foojay.io/feed/
Copied to the clipboard