If you have an existing Object in Java that you want to convert to type Optional then you can make use of the of() or ofNullable() static methods from the Optional class.
Example:
import java.util.Optional;
public class Example {
public static void main(String[] args) {
String strObject1 = "Coe2care";
Optional optionalValue1 = Optional.of(strObject1);
String strObject2 = null;
Optional optionalValue2 = Optional.ofNullable(strObject2);
if (optionalValue1.isPresent()) {
System.out.println("Value: " + optionalValue1.get());
} else {
System.out.println("Value is null");
}
if (optionalValue2.isPresent()) {
System.out.println("Value: " + optionalValue2.get());
} else {
System.out.println("Value is null");
}
}
}
Output:
Facing issues? Have Questions? Post them here! I am happy to answer!
More Posts related to Java,
- Deep Dive into Java 8 Predicate Interface
- Read and Parse XML file using Java DOM Parser [Java Tutorial]
- Java 8 Predicate Functional Interface isEqual() Method Example
- Convert Multidimensional Array toString In Java
- How to read int value using Scanner Class Java
- Spring Boot AI + LLM + Java Code Example
- Write to a File using Java Stream API
- Implementing Bubble Sort Algorithm using Java Program
- How to Fix XmlBeanDefinitionStoreException in Java SpringBoot ApplicationConfig.xml
- YAML Parser using Java Jackson Library Example
- [Fix] java: integer number too large compilation error
- Convert JSON String to Java GSON Object Example
- Read a file using Java 8 Stream
- Java Spring Boot 3 Web Hello World with Gradle in IntelliJ
- Ways Compare Dates in Java Programming with Examples
- Pretty Print JSON String in Java Console Output
- Java JDBC with Join Queries Example
- How to Check For Updates on Windows 11 (Step-by-Step)
- [Fix] java.net.MalformedURLException: unknown protocol
- How to display date and time in GMT Timezone in Java
- Error: LinkageError occurred while loading main class UnsupportedClassVersionError [Eclipse Java]
- How to convert a String to Java 8 Stream of Char?
- RabbitMQ Queue Listener Java Spring Boot Code Example
- 5+ Fibonacci number Series Java Program Examples [ 0 1 1 2 3 ..]
- Handling NullPointerException with Java Predicate
More Posts:
- Make Android TextView Clickable like Buttons - Android
- Fix: ModuleNotFoundError No module named openpyxl - Python
- java.util.Optional Class Deep Dive Tutorial - Java
- How To Change Mac Terminal Text Color - MacOS
- [Python] Fix: ValueError: All arrays must be of the same length - Python
- Fix Xcode: Git Repository Creation Failed - Git
- Spell check not working in Gmail : Mac OS X - Mac-OS-X
- Share or Send SMS via Android Intent - Android