-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Match JDK9 Optional Variants for Int, Long and Double
- Loading branch information
1 parent
c68f25c
commit d604032
Showing
12 changed files
with
1,362 additions
and
0 deletions.
There are no files selected for viewing
212 changes: 212 additions & 0 deletions
212
lib/src/main/java/com/github/dmstocking/optional/java/util/OptionalDouble.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,212 @@ | ||
package com.github.dmstocking.optional.java.util; | ||
|
||
import com.github.dmstocking.optional.java.util.function.DoubleConsumer; | ||
import com.github.dmstocking.optional.java.util.function.DoubleSupplier; | ||
import com.github.dmstocking.optional.java.util.function.Supplier; | ||
|
||
import java.util.NoSuchElementException; | ||
|
||
/** | ||
* 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. | ||
* | ||
* Additional methods that depend on the presence or absence of a contained value are provided, such | ||
* as {@code orElse()} (return a default value if value not present) and {@code ifPresent()} | ||
* (execute a block of code if the value is present). | ||
*/ | ||
@SuppressWarnings("WeakerAccess") | ||
public final class OptionalDouble { | ||
|
||
private static final OptionalDouble EMPTY = new OptionalDouble(false, 0); | ||
|
||
/** | ||
* Returns an empty {@code Optional} instance. No value is present for this Optional. | ||
* | ||
* 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()} | ||
* | ||
* @return an empty {@code Optional} | ||
*/ | ||
public static OptionalDouble empty() { | ||
return EMPTY; | ||
} | ||
|
||
private boolean isPresent; | ||
private final double value; | ||
|
||
private OptionalDouble(boolean isPresent, double value) { | ||
this.isPresent = isPresent; | ||
this.value = value; | ||
} | ||
|
||
/** | ||
* Returns an Optional with the specified present non-null value. | ||
* | ||
* @param value the value to be present, which must be non-null | ||
* @return an Optional with the value present | ||
*/ | ||
public static OptionalDouble of(double value) { | ||
return new OptionalDouble(true, 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 | ||
* @see OptionalDouble#isPresent() | ||
*/ | ||
public double getAsDouble() { | ||
if (isPresent()) { | ||
return value; | ||
} | ||
|
||
throw new NoSuchElementException("No value present"); | ||
} | ||
|
||
/** | ||
* If a value is present, invoke the specified consumer with the value, otherwise do nothing. | ||
* | ||
* @param consumer block to be executed if a value is present | ||
* @throws NullPointerException if value is present and {@code consumer} is null | ||
*/ | ||
public void ifPresent(DoubleConsumer consumer) { | ||
if (isPresent()) { | ||
consumer.accept(value); | ||
} | ||
} | ||
|
||
/** | ||
* If a value is present, invoke the specified consumer with the value, otherwise performs the | ||
* given empty-based aciton. | ||
* | ||
* @param consumer block to be executed if a value is present | ||
* @param emptyAction the empty-based action to be performed, if no value is present | ||
* @throws NullPointerException if value is present and {@code consumer} is null, or no value is | ||
* present and the given empty-based action is null. | ||
*/ | ||
public void ifPresentOrElse(DoubleConsumer consumer, Runnable emptyAction) { | ||
if (isPresent()) { | ||
consumer.accept(value); | ||
} else { | ||
emptyAction.run(); | ||
} | ||
} | ||
|
||
public boolean isPresent() { | ||
return isPresent; | ||
} | ||
|
||
/** | ||
* Return the value if present, otherwise return {@code other}. | ||
* | ||
* @param other the value to be returned if there is no value present, may be null | ||
* @return the value, if present, otherwise {@code other} | ||
*/ | ||
public double orElse(double other) { | ||
if (isPresent()) { | ||
return value; | ||
} | ||
|
||
return other; | ||
} | ||
|
||
/** | ||
* Return the value if present, otherwise invoke {@code other} and return the result of that | ||
* invocation. | ||
* | ||
* @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 | ||
*/ | ||
public double orElseGet(DoubleSupplier other) { | ||
if (isPresent()) { | ||
return value; | ||
} | ||
|
||
return other.get(); | ||
} | ||
|
||
/** | ||
* Return the contained value, if present, otherwise throw an exception to be created by the | ||
* provided supplier. | ||
* | ||
* <p> A method reference to the exception constructor with an empty argument list can be used | ||
* as the supplier. For example, {@code IllegalStateException::new} </p> | ||
* | ||
* @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 | ||
*/ | ||
public <X extends Throwable> double orElseThrow(Supplier<? extends X> exceptionSupplier) throws X { | ||
if (isPresent()) { | ||
return value; | ||
} | ||
|
||
throw exceptionSupplier.get(); | ||
} | ||
|
||
/** | ||
* Indicates whether some other object is "equal to" this 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; <li>the present values are "equal to" each other via {@code equals()}. | ||
* </ul> | ||
* | ||
* @param o an object to be tested for equality | ||
* @return {code true} if the other object is "equal to" this object otherwise {@code false} | ||
*/ | ||
@Override | ||
public boolean equals(Object o) { | ||
if (this == o) { | ||
return true; | ||
} | ||
|
||
if (!(o instanceof OptionalDouble)) { | ||
return false; | ||
} | ||
|
||
if (isPresent()) { | ||
OptionalDouble other = (OptionalDouble) o; | ||
return value == other.value; | ||
} | ||
|
||
return false; | ||
} | ||
|
||
/** | ||
* Returns the hash code value of the present value, if any, or 0 (zero) if no value is | ||
* present. | ||
* | ||
* @return hash code value of the present value or 0 if no value is present | ||
*/ | ||
@Override | ||
public int hashCode() { | ||
if (isPresent()) { | ||
return Double.hashCode(value); | ||
} | ||
|
||
return 0; | ||
} | ||
|
||
/** | ||
* 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. | ||
* | ||
* <p> If a value is present the result must include its string representation in the result. | ||
* Empty and present Optionals must be unambiguously differentiable. </p> | ||
* | ||
* @return the string representation of this instance | ||
*/ | ||
@Override | ||
public String toString() { | ||
if (isPresent()) { | ||
return "OptionalDouble[" + value + "]"; | ||
} | ||
|
||
return "OptionalDouble.empty"; | ||
} | ||
} |
Oops, something went wrong.