rspec/rules/S3655/java/rule.adoc

39 lines
1002 B
Plaintext
Raw Normal View History

2021-01-27 13:42:22 +01:00
``++Optional++`` value can hold either a value or not. The value held in the ``++Optional++`` can be accessed using the ``++get()++`` method, but it will throw a
``++NoSuchElementException++`` if there is no value present. To avoid the exception, calling the ``++isPresent()++`` or ``++! isEmpty()++`` method should always be done before any call to ``++get()++``.
2020-06-30 12:48:39 +02:00
2021-01-27 13:42:22 +01:00
Alternatively, note that other methods such as ``++orElse(...)++``, ``++orElseGet(...)++`` or ``++orElseThrow(...)++`` can be used to specify what to do with an empty ``++Optional++``.
2020-06-30 12:48:39 +02:00
== Noncompliant Code Example
----
Optional<String> value = this.getOptionalValue();
// ...
String stringValue = value.get(); // Noncompliant
----
== Compliant Solution
----
Optional<String> value = this.getOptionalValue();
// ...
if (value.isPresent()) {
String stringValue = value.get();
}
----
or
----
Optional<String> value = this.getOptionalValue();
// ...
String stringValue = value.orElse("default");
----
include::../see.adoc[]