com.helger.commons.mutable.MutableBigInteger Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ph-commons Show documentation
Show all versions of ph-commons Show documentation
Java 1.8+ Library with tons of utility classes required in all projects
/*
* Copyright (C) 2014-2024 Philip Helger (www.helger.com)
* philip[at]helger[dot]com
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License 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.helger.commons.mutable;
import java.math.BigDecimal;
import java.math.BigInteger;
import javax.annotation.Nonnull;
import javax.annotation.concurrent.NotThreadSafe;
import com.helger.commons.CGlobal;
import com.helger.commons.ValueEnforcer;
import com.helger.commons.equals.EqualsHelper;
import com.helger.commons.hashcode.HashCodeGenerator;
import com.helger.commons.math.MathHelper;
import com.helger.commons.state.EChange;
import com.helger.commons.string.ToStringGenerator;
/**
* Object wrapper around a {@link BigInteger} so that it can be passed a final
* object but is mutable.
*
* @author Philip Helger
*/
@NotThreadSafe
public class MutableBigInteger extends AbstractMutableNumeric
{
private BigInteger m_aValue;
public MutableBigInteger (final long nValue)
{
this (BigInteger.valueOf (nValue));
}
public MutableBigInteger (@Nonnull final MutableBigInteger aOther)
{
this (aOther.m_aValue);
}
public MutableBigInteger (@Nonnull final BigInteger aValue)
{
m_aValue = ValueEnforcer.notNull (aValue, "Value");
}
@Override
@Nonnull
public BigDecimal getAsBigDecimal ()
{
return new BigDecimal (m_aValue);
}
@Override
@Nonnull
public BigInteger getAsBigInteger ()
{
return m_aValue;
}
@Override
public double doubleValue ()
{
return m_aValue.doubleValue ();
}
@Override
public float floatValue ()
{
return m_aValue.floatValue ();
}
@Override
public int intValue ()
{
return m_aValue.intValue ();
}
@Override
public long longValue ()
{
return m_aValue.longValue ();
}
/**
* Increment by 1 and return the modified value.
*
* @return The by 1 incremented value.
*/
@Nonnull
public BigInteger inc ()
{
return inc (BigInteger.ONE);
}
@Nonnull
public BigInteger inc (final long nDelta)
{
return inc (BigInteger.valueOf (nDelta));
}
@Nonnull
public BigInteger inc (@Nonnull final MutableBigInteger aDelta)
{
ValueEnforcer.notNull (aDelta, "Delta");
return inc (aDelta.m_aValue);
}
@Nonnull
public BigInteger inc (@Nonnull final BigInteger aDelta)
{
ValueEnforcer.notNull (aDelta, "Delta");
m_aValue = m_aValue.add (aDelta);
onAfterChange ();
return m_aValue;
}
@Nonnull
public BigInteger dec ()
{
return inc (CGlobal.BIGINT_MINUS_ONE);
}
@Nonnull
public BigInteger dec (final long nDelta)
{
return inc (BigInteger.valueOf (-nDelta));
}
@Nonnull
public BigInteger dec (@Nonnull final MutableBigInteger aDelta)
{
ValueEnforcer.notNull (aDelta, "Delta");
return inc (aDelta.m_aValue.negate ());
}
@Nonnull
public BigInteger dec (@Nonnull final BigInteger aDelta)
{
ValueEnforcer.notNull (aDelta, "Delta");
return inc (aDelta.negate ());
}
@Nonnull
public BigInteger divide (final long nDivisor)
{
return divide (MathHelper.toBigInteger (nDivisor));
}
@Nonnull
public BigInteger divide (@Nonnull final MutableBigInteger aDivisor)
{
ValueEnforcer.notNull (aDivisor, "Divisor");
return divide (aDivisor.m_aValue);
}
@Nonnull
public BigInteger divide (@Nonnull final BigInteger aDivisor)
{
ValueEnforcer.notNull (aDivisor, "Divisor");
m_aValue = m_aValue.divide (aDivisor);
onAfterChange ();
return m_aValue;
}
@Nonnull
public BigInteger multiply (final long nMultiplicand)
{
return multiply (MathHelper.toBigInteger (nMultiplicand));
}
@Nonnull
public BigInteger multiply (@Nonnull final MutableBigInteger aMultiplicand)
{
ValueEnforcer.notNull (aMultiplicand, "Multiplicand");
return multiply (aMultiplicand.m_aValue);
}
@Nonnull
public BigInteger multiply (@Nonnull final BigInteger aMultiplicand)
{
ValueEnforcer.notNull (aMultiplicand, "Multiplicand");
m_aValue = m_aValue.multiply (aMultiplicand);
onAfterChange ();
return m_aValue;
}
@Nonnull
public EChange set (final long nDelta)
{
return set (BigInteger.valueOf (nDelta));
}
@Nonnull
public EChange set (@Nonnull final MutableBigInteger aValue)
{
ValueEnforcer.notNull (aValue, "Value");
return set (aValue.m_aValue);
}
@Nonnull
public EChange set (@Nonnull final BigInteger aValue)
{
ValueEnforcer.notNull (aValue, "Value");
if (aValue.equals (m_aValue))
return EChange.UNCHANGED;
m_aValue = aValue;
onAfterChange ();
return EChange.CHANGED;
}
public boolean is0 ()
{
return MathHelper.isEQ0 (m_aValue);
}
public boolean isLT0 ()
{
return MathHelper.isLT0 (m_aValue);
}
public boolean isLE0 ()
{
return MathHelper.isLE0 (m_aValue);
}
public boolean isGT0 ()
{
return MathHelper.isGT0 (m_aValue);
}
public boolean isGE0 ()
{
return MathHelper.isGE0 (m_aValue);
}
@Nonnull
public BigInteger getAndInc ()
{
final BigInteger ret = getAsBigInteger ();
inc ();
return ret;
}
@Nonnull
public BigInteger incAndGet ()
{
inc ();
return getAsBigInteger ();
}
public int compareTo (@Nonnull final MutableBigInteger rhs)
{
return m_aValue.compareTo (rhs.m_aValue);
}
@Nonnull
public MutableBigInteger getClone ()
{
return new MutableBigInteger (this);
}
@Override
public boolean equals (final Object o)
{
if (o == this)
return true;
if (o == null || !getClass ().equals (o.getClass ()))
return false;
final MutableBigInteger rhs = (MutableBigInteger) o;
return EqualsHelper.equals (m_aValue, rhs.m_aValue);
}
@Override
public int hashCode ()
{
return new HashCodeGenerator (this).append (m_aValue).getHashCode ();
}
@Override
public String toString ()
{
return new ToStringGenerator (this).append ("value", m_aValue).getToString ();
}
}