Upload date
All time
Last hour
Today
This week
This month
This year
Type
All
Video
Channel
Playlist
Movie
Duration
Short (< 4 minutes)
Medium (4-20 minutes)
Long (> 20 minutes)
Sort by
Relevance
Rating
View count
Features
HD
Subtitles/CC
Creative Commons
3D
Live
4K
360°
VR180
HDR
2,977 results
Learn how to use Java Optional to chain data processing, avoid NullPointerException, and write cleaner code. Discover when to ...
11 views
5 months ago
Say goodbye to NullPointerExceptions forever! This 2-minute guide reveals how Java's Optional class can transform your error ...
594 views
8 months ago
Description: Avoid NullPointerException with Java's Optional! ✓ Learn how Optional helps handle null values safely using of(), ...
282 views
10 months ago
Link to GitHub: https://github.com/Rutger-van-Velzen Link to Kata: ...
29 views
Learn everything you need to know about Java's Optional class in just 60 seconds! Understand how to avoid NullPointerException ...
26 views
9 months ago
Learn how to effectively use `Optional` in Java to handle and return values, avoiding null pointers and enhancing code readability.
3 views
11 months ago
Learn how to effectively use `Java Optional` and avoid the common pitfalls with the `orElse` statement. Unravel the complexities ...
0 views
Explore the difference between `Optional.ofNullable()` and `Optional.of()` in Java, their uses, and when to prefer one over the ...
13 views
7 months ago
Discover the optimal methods for using Java Optional with a focus on improving code readability and performance, and learn how ...
2 views
Learn how to effectively compare an `Optional Long ` with a `Long` value in Java to avoid common pitfalls and ensure accurate ...
Get Free GPT4.1 from https://codegive.com/ea056e8 ## Java Optional as a Return Type: A Comprehensive Guide The `java.util.
6 months ago
Unlock the Power of Java 11 with Optional's Simplified isEmpty! Are you ready to transform the way you handle optional values ...
60 views
Discover why using `Optional.empty().orElse("test")` results in a type error and learn how to solve it effectively. --- This video is ...
1 view
Optional.of vs Optional.ofNullable.
6 views
Learn how to enhance your Java code by utilizing `Optional.map()` to streamline your method implementations and improve ...
NullPointerException is one of Java's most common runtime errors, but did you know you can avoid it with a powerful tool ...
18 views
39 views
Encountering the "The method isEmpty() is undefined for the type Optional" error in Java? Discover why this happens and learn ...
3 months ago
Struggling with converting a `nested optional list` to an `optional list` in Java? This guide provides a step-by-step solution using ...
In Java 8, the Optional class was introduced as a container object which may or may not contain a non-null value. It helps avoid ...