All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.landawn.abacus.util.OptionalFloat Maven / Gradle / Ivy

There is a newer version: 1.10.1
Show newest version
/*
 * Copyright (c) 2012, 2013, Oracle and/or its affiliates. All rights reserved.
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
 *
 * This code is free software; you can redistribute it and/or modify it
 * under the terms of the GNU General Public License version 2 only, as
 * published by the Free Software Foundation.  Oracle designates this
 * particular file as subject to the "Classpath" exception as provided
 * by Oracle in the LICENSE file that accompanied this code.
 *
 * This code is distributed in the hope that it will be useful, but WITHOUT
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
 * version 2 for more details (a copy is included in the LICENSE file that
 * accompanied this code).
 *
 * You should have received a copy of the GNU General Public License version
 * 2 along with this work; if not, write to the Free Software Foundation,
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
 *
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
 * or visit www.oracle.com if you need additional information or have any
 * questions.
 */
package com.landawn.abacus.util;

import java.util.NoSuchElementException;

import com.landawn.abacus.util.function.FloatConsumer;
import com.landawn.abacus.util.function.FloatSupplier;
import com.landawn.abacus.util.function.Supplier;
import com.landawn.abacus.util.stream.FloatStream;

/**
 * Note: It's copied from OpenJDK at: http://hg.openjdk.java.net/jdk8u/hs-dev/jdk
 * 
* * A container object which may or may not contain a {@code float} 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 {@link #or(float) orElse()} * (return a default value if value not present) and * {@link #ifPresent(java.util.function.FloatConsumer) ifPresent()} (execute a block * of code if the value is present). * *

This is a value-based * class; use of identity-sensitive operations (including reference equality * ({@code ==}), identity hash code, or synchronization) on instances of * {@code OptionalFloat} may have unpredictable results and should be avoided. * * @since 1.8 */ public final class OptionalFloat implements Comparable { /** * Common instance for {@code empty()}. */ private static final OptionalFloat EMPTY = new OptionalFloat(); /** * If true then the value is present, otherwise indicates no value is present */ private final boolean isPresent; private final float value; /** * Construct an empty instance. * * @implNote generally only one empty instance, {@link OptionalFloat#EMPTY}, * should exist per VM. */ private OptionalFloat() { this.isPresent = false; this.value = Float.NaN; } /** * Returns an empty {@code OptionalFloat} instance. No value is present for this * OptionalFloat. * * @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 OptionalFloat.empty()}. There is no guarantee that it is a singleton. * Instead, use {@link #isPresent()}. * * @return an empty {@code OptionalFloat}. */ public static OptionalFloat empty() { return EMPTY; } /** * Construct an instance with the value present. * * @param value the float value to be present. */ private OptionalFloat(float value) { this.isPresent = true; this.value = value; } /** * Return an {@code OptionalFloat} with the specified value present. * * @param value the value to be present * @return an {@code OptionalFloat} with the value present */ public static OptionalFloat of(float value) { return new OptionalFloat(value); } /** * If a value is present in this {@code OptionalFloat}, returns the value, * otherwise throws {@code NoSuchElementException}. * * @return the value held by this {@code OptionalFloat} * @throws NoSuchElementException if there is no value present * * @see OptionalFloat#isPresent() */ public float get() { if (isPresent()) { return value; } else { throw new NoSuchElementException("No value present"); } } /** * * @return * @throws NoSuchElementException if the value is not present, or ArithmeticException if the value is present but bigger than Integer.MAX_VALUE or less than Integer.MIN_VALUE */ public int getAsInt() { if (isPresent()) { if (value < Integer.MIN_VALUE || value > Integer.MAX_VALUE) { throw new ArithmeticException("overflow"); } return (int) value; } else { throw new NoSuchElementException("No value present"); } } /** * * @return * @throws NoSuchElementException if the value is not present, or ArithmeticException if the value is present but bigger than Long.MAX_VALUE or less than Long.MIN_VALUE */ public long getAsLong() { if (isPresent()) { if (value < Long.MIN_VALUE || value > Long.MAX_VALUE) { throw new ArithmeticException("overflow"); } return (long) value; } else { throw new NoSuchElementException("No value present"); } } /** * Return {@code true} if there is a value present, otherwise {@code false}. * * @return {@code true} if there is a value present, otherwise {@code false} */ public boolean isPresent() { return isPresent; } /** * Have the specified consumer accept the value if a value is present, * otherwise do nothing. * * @param action block to be executed if a value is present * @throws NullPointerException if value is present and {@code consumer} is * null */ public void ifPresent(FloatConsumer action) { if (isPresent()) { action.accept(value); } } /** * If a value is present, performs the given action with the value, otherwise performs the given empty-based action. * * @param action * @param emptyAction */ public void ifPresentOrElse(FloatConsumer action, Runnable emptyAction) { if (isPresent()) { action.accept(value); } else { emptyAction.run(); } } /** * Return the value if present, otherwise return {@code other}. * * @param other the value to be returned if there is no value present * @return the value, if present, otherwise {@code other} */ public float or(float other) { return isPresent() ? value : other; } /** * * @return * @throws ArithmeticException if the value is present but bigger than Integer.MAX_VALUE or less than Integer.MIN_VALUE */ public int orInt(int other) { return isPresent() ? getAsInt() : other; } /** * * @return * @throws ArithmeticException if the value is present but bigger than Long.MAX_VALUE or less than Long.MIN_VALUE */ public long orLong(long other) { return isPresent() ? getAsLong() : other; } /** * Return the value if present, otherwise invoke {@code other} and return * the result of that invocation. * * @param other a {@code FloatSupplier} whose result is returned if no value * is present * @return the value if present otherwise the result of {@code other.getAsFloat()} * @throws NullPointerException if value is not present and {@code other} is * null */ public float orGet(FloatSupplier other) { return isPresent() ? value : other.getAsFloat(); } /** * Return the contained value, if present, otherwise throw an exception * to be created by the provided supplier. * * @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 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 float orThrow(Supplier exceptionSupplier) throws X { if (isPresent()) { return value; } else { throw exceptionSupplier.get(); } } /** * Return the value if present, otherwise return {@code 0}. * * @return the value, if present, otherwise {@code 0} */ public float orZero() { return isPresent() ? value : 0f; } @Override public int compareTo(OptionalFloat optional) { if (optional == null || optional.isPresent() == false) { return isPresent() ? 1 : 0; } if (isPresent() == false) { return optional.isPresent() ? -1 : 0; } return Float.compare(this.get(), optional.get()); } public FloatStream stream() { return isPresent() ? FloatStream.of(value) : FloatStream.empty(); } public Optional boxed() { return isPresent() ? Optional.of(value) : Optional. empty(); } /** * Indicates whether some other object is "equal to" this OptionalFloat. The * other object is considered equal if: *

    *
  • it is also an {@code OptionalFloat} and; *
  • both instances have no value present or; *
  • the present values are "equal to" each other via {@code Float.compare() == 0}. *
* * @param obj 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 obj) { if (this == obj) { return true; } if (obj instanceof OptionalFloat) { OptionalFloat other = (OptionalFloat) obj; return (isPresent && other.isPresent) ? Float.compare(value, other.value) == 0 : isPresent == other.isPresent; } 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() { return isPresent() ? Float.valueOf(value).hashCode() : 0; } /** * {@inheritDoc} * * Returns a non-empty string representation of this object 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 instances must be * unambiguously differentiable. * * @return the string representation of this instance */ @Override public String toString() { return isPresent() ? String.format("OptionalFloat[%s]", value) : "OptionalFloat.empty"; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy