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

org.apache.inlong.sort.filesystem.shaded.software.amazon.ion.IonFloat Maven / Gradle / Ivy

There is a newer version: 1.13.0
Show newest version
/*
 * Copyright 2007-2016 Amazon.com, Inc. or its affiliates. All Rights Reserved.
 *
 * Licensed under the Apache License, Version 2.0 (the "License").
 * You may not use this file except in compliance with the License.
 * A copy of the License is located at:
 *
 *     http://aws.amazon.com/apache2.0/
 *
 * or in the "license" file accompanying this file. This file is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific
 * language governing permissions and limitations under the License.
 */

package software.amazon.ion;
import java.math.BigDecimal;


/**
 * An Ion float value.
 * 

* WARNING: This interface should not be implemented or extended by * code outside of this library. * *

Precision Problems

* * Use of binary floating-point numbers is prone to countless problems. * The vast majority of applications should use {@code decimal} values instead. * Please read the * Decimal Arithmetic * FAQ for horror stories. *

* If you have any doubt whatsoever on whether you should use {@code float} or * {@code decimal}, then you should use {@code decimal}. * * @see IonDecimal */ public interface IonFloat extends IonValue { /** * Gets the value of this Ion float as a Java * float value. * * @return the float value. * @throws NullValueException if this.isNullValue(). */ public float floatValue() throws NullValueException; /** * Gets the value of this Ion float as a Java * double value. * * @return the double value. * @throws NullValueException if this.isNullValue(). */ public double doubleValue() throws NullValueException; /** * Gets the value of this Ion {@code float} as a Java {@link BigDecimal}. * This follows the behavior of {@link BigDecimal#valueOf(double)}. It's * recommended to call {@link IonFloat#isNumericValue()} before calling * this method. * * @return the {@link BigDecimal} value, or {@code null} if * {@code this.isNullValue()}. * * @throws NumberFormatException if this value is {@code nan}, * {@code +inf}, or {@code -inf}, because {@link BigDecimal} cannot * represent those values. */ public BigDecimal bigDecimalValue() throws NullValueException; /** * Sets the value of this element. */ public void setValue(float value); /** * Sets the value of this element. */ public void setValue(double value); /** * Sets the value of this element. * Since Ion {@code float}s are essentially Java {@code double}s, * this performs a narrowing conversion as described by * {@link BigDecimal#doubleValue()}. * * @param value the new value of this float; * may be null to make this null.float. */ public void setValue(BigDecimal value); /** * Determines whether this value is numeric. Returns true if this value * is none of {@code null}, {@code nan}, {@code +inf}, and {@code -inf}, * and false if it is any of them. * * @return a checked condition whether this value is numeric. */ public boolean isNumericValue(); public IonFloat clone() throws UnknownSymbolException; }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy