Skip to content

Instantly share code, notes, and snippets.

@mateuszszulc
Created February 1, 2013 10:16
Show Gist options
  • Save mateuszszulc/4690497 to your computer and use it in GitHub Desktop.
Save mateuszszulc/4690497 to your computer and use it in GitHub Desktop.
w546uw56u
import com.google.common.base.Optional;
public class Main {
public static void main(String[] args) {
Optional<Integer> possible = Optional.of(5);
possible.isPresent(); // returns true
System.out.println(possible.get()); // returns 5
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment