Guava – Optional Class

  • Post author:
  • Post category:Guava
  • Post comments:1 Comment
Optional Class

Optional class is an immutable object used to contain a not-null object. Optional object is used to represent null with absent value. This class has various utility methods to facilitate the code to handle values as available or not available instead of checking null values.

Class Declaration

Following is the declaration for com.google.common.base.Optional<T> class โˆ’

@GwtCompatible(serializable = true)
public abstract class Optional<T>
   extends Object
      implements Serializable

Class Methods

Sr.NoMethod & Description
1static <T> Optional<T> absent()Returns an Optional instance with no contained reference.
2abstract Set<T> asSet()Returns an immutable singleton Set whose only element is the contained instance if it is present; an empty immutable Set otherwise.
3abstract boolean equals(Object object)Returns true if object is an Optional instance, and either the contained references are equal to each other or both are absent.
4static <T> Optional<T> fromNullable(T nullableReference)If nullableReference is non-null, returns an Optional instance containing that reference; otherwise returns absent().
5abstract T get()Returns the contained instance, which must be present.
6abstract int hashCode()Returns a hash code for this instance.
7abstract boolean isPresent()Returns true if this holder contains a (non-null) instance.
8static <T> Optional<T> of(T reference)Returns an Optional instance containing the given non-null reference.
9abstract Optional<T> or(Optional<? extends T> secondChoice)Returns this Optional if it has a value present; secondChoice otherwise.
10abstract T or(Supplier<? extends T> supplier)Returns the contained instance if it is present; supplier.get() otherwise.
11abstract T or(T defaultValue)Returns the contained instance if it is present; defaultValue otherwise.
12abstract T orNull()Returns the contained instance if it is present; null otherwise.
13static <T> Iterable<T> presentInstances(Iterable<? extends Optional<? extends T>> optionals)Returns the value of each present instance from the supplied optionals, in order, skipping over occurrences of absent().
14abstract String toString()Returns a string representation for this instance.
15abstract <V> Optional<V> transform(Function<? super T,V> function)If the instance is present, it is transformed with the given Function; otherwise, absent() is returned.

Methods Inherited

This class inherits methods from the following class โˆ’

  • java.lang.Object

Example of Optional Class

Create the following java program using any editor of your choice in say C:/> Guava.

GuavaTester.java

import com.google.common.base.Optional;

public class GuavaTester {
   public static void main(String args[]) {
      GuavaTester guavaTester = new GuavaTester();

      Integer value1 =  null;
      Integer value2 =  new Integer(10);
      
      //Optional.fromNullable - allows passed parameter to be null.
      Optional<Integer> a = Optional.fromNullable(value1);
      
      //Optional.of - throws NullPointerException if passed parameter is null
      Optional<Integer> b = Optional.of(value2);		

      System.out.println(guavaTester.sum(a,b));
   }

   public Integer sum(Optional<Integer> a, Optional<Integer> b) {
      //Optional.isPresent - checks the value is present or not
      System.out.println("First parameter is present: " + a.isPresent());

      System.out.println("Second parameter is present: " + b.isPresent());

      //Optional.or - returns the value if present otherwise returns
      //the default value passed.
      Integer value1 = a.or(new Integer(0));	

      //Optional.get - gets the value, value should be present
      Integer value2 = b.get();

      return value1 + value2;
   }	
}

Verify the Result

Compile the class using javac compiler as follows โˆ’

C:\Guava>javac GuavaTester.java

Now run the GuavaTester to see the result.

C:\Guava>java GuavaTester

See the result.

First parameter is present: false
Second parameter is present: true
10

Next Topic:-Click Here

This Post Has One Comment

Leave a Reply