mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-28 07:14:30 +02:00
8080418: Add Optional.or()
Reviewed-by: chegar, forax, scolebourne
This commit is contained in:
parent
46123d7fd5
commit
5e8d2b8ebd
5 changed files with 426 additions and 340 deletions
|
@ -31,21 +31,22 @@ import java.util.function.Supplier;
|
|||
import java.util.stream.Stream;
|
||||
|
||||
/**
|
||||
* A container object which may or may not contain a non-null value.
|
||||
* If a value is present, {@code isPresent()} will return {@code true} and
|
||||
* {@code get()} will return the value.
|
||||
* A container object which may or may not contain a non-{@code null} value.
|
||||
* If a value is present, {@code isPresent()} returns {@code true} and
|
||||
* {@code get()} returns the value.
|
||||
*
|
||||
* <p>Additional methods that depend on the presence or absence of a contained
|
||||
* value are provided, such as {@link #orElse(java.lang.Object) orElse()}
|
||||
* (return a default value if value not present) and
|
||||
* {@link #ifPresent(java.util.function.Consumer) ifPresent()} (perform an
|
||||
* action if the value is present).
|
||||
* (returns a default value if no value is present) and
|
||||
* {@link #ifPresent(java.util.function.Consumer) ifPresent()} (performs an
|
||||
* action if a value is present).
|
||||
*
|
||||
* <p>This is a <a href="../lang/doc-files/ValueBased.html">value-based</a>
|
||||
* class; use of identity-sensitive operations (including reference equality
|
||||
* ({@code ==}), identity hash code, or synchronization) on instances of
|
||||
* {@code Optional} may have unpredictable results and should be avoided.
|
||||
*
|
||||
* @param <T> the type of value
|
||||
* @since 1.8
|
||||
*/
|
||||
public final class Optional<T> {
|
||||
|
@ -71,14 +72,15 @@ public final class Optional<T> {
|
|||
|
||||
/**
|
||||
* Returns an empty {@code Optional} instance. No value is present for this
|
||||
* Optional.
|
||||
* {@code Optional}.
|
||||
*
|
||||
* @apiNote Though it may be tempting to do so, avoid testing if an object
|
||||
* is empty by comparing with {@code ==} against instances returned by
|
||||
* {@code Option.empty()}. There is no guarantee that it is a singleton.
|
||||
* @apiNote
|
||||
* Though it may be tempting to do so, avoid testing if an object is empty
|
||||
* by comparing with {@code ==} against instances returned by
|
||||
* {@code Optional.empty()}. There is no guarantee that it is a singleton.
|
||||
* Instead, use {@link #isPresent()}.
|
||||
*
|
||||
* @param <T> Type of the non-existent value
|
||||
* @param <T> The type of the non-existent value
|
||||
* @return an empty {@code Optional}
|
||||
*/
|
||||
public static<T> Optional<T> empty() {
|
||||
|
@ -88,47 +90,47 @@ public final class Optional<T> {
|
|||
}
|
||||
|
||||
/**
|
||||
* Constructs an instance with the value present.
|
||||
* Constructs an instance with the described value.
|
||||
*
|
||||
* @param value the non-null value to be present
|
||||
* @throws NullPointerException if value is null
|
||||
* @param value the non-{@code null} value to describe
|
||||
* @throws NullPointerException if value is {@code null}
|
||||
*/
|
||||
private Optional(T value) {
|
||||
this.value = Objects.requireNonNull(value);
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns an {@code Optional} with the specified present non-null value.
|
||||
* Returns an {@code Optional} describing the given non-{@code null}
|
||||
* value.
|
||||
*
|
||||
* @param <T> the class of the value
|
||||
* @param value the value to be present, which must be non-null
|
||||
* @param value the value to describe, which must be non-{@code null}
|
||||
* @param <T> the type of the value
|
||||
* @return an {@code Optional} with the value present
|
||||
* @throws NullPointerException if value is null
|
||||
* @throws NullPointerException if value is {@code null}
|
||||
*/
|
||||
public static <T> Optional<T> of(T value) {
|
||||
return new Optional<>(value);
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns an {@code Optional} describing the specified value, if non-null,
|
||||
* otherwise returns an empty {@code Optional}.
|
||||
* Returns an {@code Optional} describing the given value, if
|
||||
* non-{@code null}, otherwise returns an empty {@code Optional}.
|
||||
*
|
||||
* @param <T> the class of the value
|
||||
* @param value the possibly-null value to describe
|
||||
* @param value the possibly-{@code null} value to describe
|
||||
* @param <T> the type of the value
|
||||
* @return an {@code Optional} with a present value if the specified value
|
||||
* is non-null, otherwise an empty {@code Optional}
|
||||
* is non-{@code null}, otherwise an empty {@code Optional}
|
||||
*/
|
||||
public static <T> Optional<T> ofNullable(T value) {
|
||||
return value == null ? empty() : of(value);
|
||||
}
|
||||
|
||||
/**
|
||||
* If a value is present in this {@code Optional}, returns the value,
|
||||
* otherwise throws {@code NoSuchElementException}.
|
||||
*
|
||||
* @return the non-null value held by this {@code Optional}
|
||||
* @throws NoSuchElementException if there is no value present
|
||||
* If a value is present, returns the value, otherwise throws
|
||||
* {@code NoSuchElementException}.
|
||||
*
|
||||
* @return the non-{@code null} value described by this {@code Optional}
|
||||
* @throws NoSuchElementException if no value is present
|
||||
* @see Optional#isPresent()
|
||||
*/
|
||||
public T get() {
|
||||
|
@ -139,21 +141,21 @@ public final class Optional<T> {
|
|||
}
|
||||
|
||||
/**
|
||||
* Return {@code true} if there is a value present, otherwise {@code false}.
|
||||
* If a value is present, returns {@code true}, otherwise {@code false}.
|
||||
*
|
||||
* @return {@code true} if there is a value present, otherwise {@code false}
|
||||
* @return {@code true} if a value is present, otherwise {@code false}
|
||||
*/
|
||||
public boolean isPresent() {
|
||||
return value != null;
|
||||
}
|
||||
|
||||
/**
|
||||
* If a value is present, perform the given action with the value,
|
||||
* otherwise do nothing.
|
||||
* If a value is present, performs the given action with the value,
|
||||
* otherwise does nothing.
|
||||
*
|
||||
* @param action the action to be performed if a value is present
|
||||
* @throws NullPointerException if a value is present and {@code action} is
|
||||
* null
|
||||
* @param action the action to be performed, if a value is present
|
||||
* @throws NullPointerException if value is present and the given action is
|
||||
* {@code null}
|
||||
*/
|
||||
public void ifPresent(Consumer<? super T> action) {
|
||||
if (value != null) {
|
||||
|
@ -162,15 +164,16 @@ public final class Optional<T> {
|
|||
}
|
||||
|
||||
/**
|
||||
* If a value is present, perform the given action with the value,
|
||||
* otherwise perform the given empty-based action.
|
||||
* If a value is present, performs the given action with the value,
|
||||
* otherwise performs the given empty-based action.
|
||||
*
|
||||
* @param action the action to be performed if a value is present
|
||||
* @param emptyAction the empty-based action to be performed if a value is
|
||||
* not present
|
||||
* @throws NullPointerException if a value is present and {@code action} is
|
||||
* null, or a value is not present and {@code emptyAction} is null.
|
||||
* @since 1.9
|
||||
* @param action the action to be performed, if a value is present
|
||||
* @param emptyAction the empty-based action to be performed, if no value is
|
||||
* present
|
||||
* @throws NullPointerException if a value is present and the given action
|
||||
* is {@code null}, or no value is present and the given empty-based
|
||||
* action is {@code null}.
|
||||
* @since 9
|
||||
*/
|
||||
public void ifPresentOrElse(Consumer<? super T> action, Runnable emptyAction) {
|
||||
if (value != null) {
|
||||
|
@ -182,14 +185,14 @@ public final class Optional<T> {
|
|||
|
||||
/**
|
||||
* If a value is present, and the value matches the given predicate,
|
||||
* return an {@code Optional} describing the value, otherwise return an
|
||||
* returns an {@code Optional} describing the value, otherwise returns an
|
||||
* empty {@code Optional}.
|
||||
*
|
||||
* @param predicate a predicate to apply to the value, if present
|
||||
* @return an {@code Optional} describing the value of this {@code Optional}
|
||||
* if a value is present and the value matches the given predicate,
|
||||
* otherwise an empty {@code Optional}
|
||||
* @throws NullPointerException if the predicate is null
|
||||
* @param predicate the predicate to apply to a value, if present
|
||||
* @return an {@code Optional} describing the value of this
|
||||
* {@code Optional}, if a value is present and the value matches the
|
||||
* given predicate, otherwise an empty {@code Optional}
|
||||
* @throws NullPointerException if the predicate is {@code null}
|
||||
*/
|
||||
public Optional<T> filter(Predicate<? super T> predicate) {
|
||||
Objects.requireNonNull(predicate);
|
||||
|
@ -201,14 +204,18 @@ public final class Optional<T> {
|
|||
}
|
||||
|
||||
/**
|
||||
* If a value is present, apply the provided mapping function to it,
|
||||
* and if the result is non-null, return an {@code Optional} describing the
|
||||
* result. Otherwise return an empty {@code Optional}.
|
||||
* If a value is present, returns an {@code Optional} describing (as if by
|
||||
* {@link #ofNullable}) the result of applying the given mapping function to
|
||||
* the value, otherwise returns an empty {@code Optional}.
|
||||
*
|
||||
* @apiNote This method supports post-processing on optional values, without
|
||||
* <p>If the mapping function returns a {@code null} result then this method
|
||||
* returns an empty {@code Optional}.
|
||||
*
|
||||
* @apiNote
|
||||
* This method supports post-processing on {@code Optional} values, without
|
||||
* the need to explicitly check for a return status. For example, the
|
||||
* following code traverses a stream of file names, selects one that has
|
||||
* not yet been processed, and then opens that file, returning an
|
||||
* following code traverses a stream of file names, selects one that has not
|
||||
* yet been processed, and then opens that file, returning an
|
||||
* {@code Optional<FileInputStream>}:
|
||||
*
|
||||
* <pre>{@code
|
||||
|
@ -222,12 +229,12 @@ public final class Optional<T> {
|
|||
* {@code map} returns an {@code Optional<FileInputStream>} for the desired
|
||||
* file if one exists.
|
||||
*
|
||||
* @param <U> The type of the result of the mapping function
|
||||
* @param mapper a mapping function to apply to the value, if present
|
||||
* @param mapper the mapping function to apply to a value, if present
|
||||
* @param <U> The type of the value returned from the mapping function
|
||||
* @return an {@code Optional} describing the result of applying a mapping
|
||||
* function to the value of this {@code Optional}, if a value is present,
|
||||
* otherwise an empty {@code Optional}
|
||||
* @throws NullPointerException if the mapping function is null
|
||||
* function to the value of this {@code Optional}, if a value is
|
||||
* present, otherwise an empty {@code Optional}
|
||||
* @throws NullPointerException if the mapping function is {@code null}
|
||||
*/
|
||||
public<U> Optional<U> map(Function<? super T, ? extends U> mapper) {
|
||||
Objects.requireNonNull(mapper);
|
||||
|
@ -239,21 +246,23 @@ public final class Optional<T> {
|
|||
}
|
||||
|
||||
/**
|
||||
* If a value is present, apply the provided {@code Optional}-bearing
|
||||
* mapping function to it, return that result, otherwise return an empty
|
||||
* {@code Optional}. This method is similar to {@link #map(Function)},
|
||||
* but the provided mapper is one whose result is already an {@code Optional},
|
||||
* and if invoked, {@code flatMap} does not wrap it with an additional
|
||||
* If a value is present, returns the result of applying the given
|
||||
* {@code Optional}-bearing mapping function to the value, otherwise returns
|
||||
* an empty {@code Optional}.
|
||||
*
|
||||
* <p>This method is similar to {@link #map(Function)}, but the mapping
|
||||
* function is one whose result is already an {@code Optional}, and if
|
||||
* invoked, {@code flatMap} does not wrap it within an additional
|
||||
* {@code Optional}.
|
||||
*
|
||||
* @param <U> The type parameter to the {@code Optional} returned by
|
||||
* @param mapper a mapping function to apply to the value, if present
|
||||
* the mapping function
|
||||
* @param <U> The type of value of the {@code Optional} returned by the
|
||||
* mapping function
|
||||
* @param mapper the mapping function to apply to a value, if present
|
||||
* @return the result of applying an {@code Optional}-bearing mapping
|
||||
* function to the value of this {@code Optional}, if a value is present,
|
||||
* otherwise an empty {@code Optional}
|
||||
* @throws NullPointerException if the mapping function is null or returns
|
||||
* a null result
|
||||
* function to the value of this {@code Optional}, if a value is
|
||||
* present, otherwise an empty {@code Optional}
|
||||
* @throws NullPointerException if the mapping function is {@code null} or
|
||||
* returns a {@code null} result
|
||||
*/
|
||||
public<U> Optional<U> flatMap(Function<? super T, Optional<U>> mapper) {
|
||||
Objects.requireNonNull(mapper);
|
||||
|
@ -265,19 +274,41 @@ public final class Optional<T> {
|
|||
}
|
||||
|
||||
/**
|
||||
* If a value is present return a sequential {@link Stream} containing only
|
||||
* that value, otherwise return an empty {@code Stream}.
|
||||
* If a value is present, returns an {@code Optional} describing the value,
|
||||
* otherwise returns an {@code Optional} produced by the supplying function.
|
||||
*
|
||||
* @apiNote This method can be used to transform a {@code Stream} of
|
||||
* optional elements to a {@code Stream} of present value elements:
|
||||
* @param supplier the supplying function that produces an {@code Optional}
|
||||
* to be returned
|
||||
* @return returns an {@code Optional} describing the value of this
|
||||
* {@code Optional}, if a value is present, otherwise an
|
||||
* {@code Optional} produced by the supplying function.
|
||||
* @throws NullPointerException if the supplying function is {@code null} or
|
||||
* produces a {@code null} result
|
||||
* @since 9
|
||||
*/
|
||||
public Optional<T> or(Supplier<Optional<T>> supplier) {
|
||||
Objects.requireNonNull(supplier);
|
||||
if (isPresent()) {
|
||||
return this;
|
||||
} else {
|
||||
return Objects.requireNonNull(supplier.get());
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* If a value is present, returns a sequential {@link Stream} containing
|
||||
* only that value, otherwise returns an empty {@code Stream}.
|
||||
*
|
||||
* @apiNote
|
||||
* This method can be used to transform a {@code Stream} of optional
|
||||
* elements to a {@code Stream} of present value elements:
|
||||
* <pre>{@code
|
||||
* Stream<Optional<T>> os = ..
|
||||
* Stream<T> s = os.flatMap(Optional::stream)
|
||||
* }</pre>
|
||||
*
|
||||
* @return the optional value as a {@code Stream}
|
||||
* @since 1.9
|
||||
* @since 9
|
||||
*/
|
||||
public Stream<T> stream() {
|
||||
if (!isPresent()) {
|
||||
|
@ -288,10 +319,11 @@ public final class Optional<T> {
|
|||
}
|
||||
|
||||
/**
|
||||
* Return the value if present, otherwise return {@code other}.
|
||||
* If a value is present, returns the value, otherwise returns
|
||||
* {@code other}.
|
||||
*
|
||||
* @param other the value to be returned if there is no value present, may
|
||||
* be null
|
||||
* @param other the value to be returned, if no value is present.
|
||||
* May be {@code null}.
|
||||
* @return the value, if present, otherwise {@code other}
|
||||
*/
|
||||
public T orElse(T other) {
|
||||
|
@ -299,34 +331,35 @@ public final class Optional<T> {
|
|||
}
|
||||
|
||||
/**
|
||||
* Return the value if present, otherwise invoke {@code other} and return
|
||||
* the result of that invocation.
|
||||
* If a value is present, returns the value, otherwise returns the result
|
||||
* produced by the supplying function.
|
||||
*
|
||||
* @param other a {@code Supplier} whose result is returned if no value
|
||||
* is present
|
||||
* @return the value if present otherwise the result of {@code other.get()}
|
||||
* @throws NullPointerException if value is not present and {@code other} is
|
||||
* null
|
||||
* @param supplier the supplying function that produces a value to be returned
|
||||
* @return the value, if present, otherwise the result produced by the
|
||||
* supplying function
|
||||
* @throws NullPointerException if no value is present and the supplying
|
||||
* function is {@code null}
|
||||
*/
|
||||
public T orElseGet(Supplier<? extends T> other) {
|
||||
return value != null ? value : other.get();
|
||||
public T orElseGet(Supplier<? extends T> supplier) {
|
||||
return value != null ? value : supplier.get();
|
||||
}
|
||||
|
||||
/**
|
||||
* Return the contained value, if present, otherwise throw an exception
|
||||
* to be created by the provided supplier.
|
||||
* If a value is present, returns the value, otherwise throws an exception
|
||||
* produced by the exception supplying function.
|
||||
*
|
||||
* @apiNote A method reference to the exception constructor with an empty
|
||||
* argument list can be used as the supplier. For example,
|
||||
* @apiNote
|
||||
* A method reference to the exception constructor with an empty argument
|
||||
* list can be used as the supplier. For example,
|
||||
* {@code IllegalStateException::new}
|
||||
*
|
||||
* @param <X> Type of the exception to be thrown
|
||||
* @param exceptionSupplier The supplier which will return the exception to
|
||||
* be thrown
|
||||
* @return the present value
|
||||
* @throws X if there is no value present
|
||||
* @throws NullPointerException if no value is present and
|
||||
* {@code exceptionSupplier} is null
|
||||
* @param exceptionSupplier the supplying function that produces an
|
||||
* exception to be thrown
|
||||
* @return the value, if present
|
||||
* @throws X if no value is present
|
||||
* @throws NullPointerException if no value is present and the exception
|
||||
* supplying function is {@code null}
|
||||
*/
|
||||
public <X extends Throwable> T orElseThrow(Supplier<? extends X> exceptionSupplier) throws X {
|
||||
if (value != null) {
|
||||
|
@ -337,8 +370,8 @@ public final class Optional<T> {
|
|||
}
|
||||
|
||||
/**
|
||||
* Indicates whether some other object is "equal to" this Optional. The
|
||||
* other object is considered equal if:
|
||||
* Indicates whether some other object is "equal to" this {@code Optional}.
|
||||
* The other object is considered equal if:
|
||||
* <ul>
|
||||
* <li>it is also an {@code Optional} and;
|
||||
* <li>both instances have no value present or;
|
||||
|
@ -347,7 +380,7 @@ public final class Optional<T> {
|
|||
*
|
||||
* @param obj an object to be tested for equality
|
||||
* @return {@code true} if the other object is "equal to" this object
|
||||
* otherwise {@code false}
|
||||
* otherwise {@code false}
|
||||
*/
|
||||
@Override
|
||||
public boolean equals(Object obj) {
|
||||
|
@ -364,10 +397,11 @@ public final class Optional<T> {
|
|||
}
|
||||
|
||||
/**
|
||||
* Returns the hash code value of the present value, if any, or 0 (zero) if
|
||||
* no value is present.
|
||||
* Returns the hash code of the value, if present, otherwise {@code 0}
|
||||
* (zero) if no value is present.
|
||||
*
|
||||
* @return hash code value of the present value or 0 if no value is present
|
||||
* @return hash code value of the present value or {@code 0} if no value is
|
||||
* present
|
||||
*/
|
||||
@Override
|
||||
public int hashCode() {
|
||||
|
@ -375,13 +409,14 @@ public final class Optional<T> {
|
|||
}
|
||||
|
||||
/**
|
||||
* Returns a non-empty string representation of this Optional suitable for
|
||||
* debugging. The exact presentation format is unspecified and may vary
|
||||
* between implementations and versions.
|
||||
* Returns a non-empty string representation of this {@code Optional}
|
||||
* suitable for debugging. The exact presentation format is unspecified and
|
||||
* may vary between implementations and versions.
|
||||
*
|
||||
* @implSpec If a value is present the result must include its string
|
||||
* representation in the result. Empty and present Optionals must be
|
||||
* unambiguously differentiable.
|
||||
* @implSpec
|
||||
* If a value is present the result must include its string representation
|
||||
* in the result. Empty and present {@code Optional}s must be unambiguously
|
||||
* differentiable.
|
||||
*
|
||||
* @return the string representation of this instance
|
||||
*/
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue