com.amazon.ion.impl.lite.IonFloatLite Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ion-java Show documentation
Show all versions of ion-java Show documentation
A Java implementation of the Amazon Ion data notation.
The newest version!
/*
* Copyright 2007-2019 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://www.apache.org/licenses/LICENSE-2.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 com.amazon.ion.impl.lite;
import com.amazon.ion.Decimal;
import com.amazon.ion.IonFloat;
import com.amazon.ion.IonType;
import com.amazon.ion.IonWriter;
import com.amazon.ion.NullValueException;
import com.amazon.ion.ValueVisitor;
import java.io.IOException;
import java.math.BigDecimal;
final class IonFloatLite
extends IonValueLite
implements IonFloat
{
private static final int HASH_SIGNATURE =
IonType.FLOAT.toString().hashCode();
private Double _float_value;
/**
* Constructs a null.float
element.
*/
IonFloatLite(ContainerlessContext context, boolean isNull)
{
super(context, isNull);
}
IonFloatLite(IonFloatLite existing, IonContext context)
{
super(existing, context);
// shallow copy as Double is immutable
this._float_value = existing._float_value;
}
@Override
IonValueLite shallowClone(IonContext context)
{
return new IonFloatLite(this, context);
}
@Override
public IonFloatLite clone()
{
return (IonFloatLite) shallowClone(ContainerlessContext.wrap(getSystem()));
}
@Override
int hashSignature() {
return HASH_SIGNATURE;
}
@Override
int scalarHashCode()
{
int result = HASH_SIGNATURE;
long bits = Double.doubleToLongBits(_float_value);
result ^= (int) ((bits >>> 32) ^ bits);
return hashTypeAnnotations(result);
}
@Override
public IonType getType()
{
return IonType.FLOAT;
}
public float floatValue()
throws NullValueException
{
validateThisNotNull();
return _float_value.floatValue();
}
public double doubleValue()
throws NullValueException
{
validateThisNotNull();
return _float_value.doubleValue();
}
@Override
public BigDecimal bigDecimalValue()
throws NullValueException
{
if (isNullValue()) {
return null;
}
return Decimal.valueOf(_float_value.doubleValue());
}
public void setValue(float value)
{
// base set value will check for the lock
setValue(Double.valueOf(value));
}
public void setValue(double value)
{
// base setValue will check for the lock
setValue(Double.valueOf(value));
}
public void setValue(BigDecimal value)
{
checkForLock();
if (value == null)
{
_float_value = null;
_isNullValue(true);
}
else
{
setValue(value.doubleValue());
}
}
public void setValue(Double d)
{
checkForLock();
_float_value = d;
_isNullValue(d == null);
}
@Override
final void writeBodyTo(IonWriter writer, SymbolTableProvider symbolTableProvider)
throws IOException
{
writer.writeFloat(_float_value);
}
@Override
public boolean isNumericValue()
{
return !(isNullValue() || _float_value.isNaN() || _float_value.isInfinite());
}
@Override
public void accept(ValueVisitor visitor) throws Exception
{
visitor.visit(this);
}
}