com.helger.masterdata.currencyvalue.IMutableCurrencyValue Maven / Gradle / Ivy
/**
* Copyright (C) 2014-2017 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.masterdata.currencyvalue;
import java.math.BigDecimal;
import javax.annotation.CheckReturnValue;
import javax.annotation.Nonnull;
import com.helger.commons.lang.ICloneable;
import com.helger.commons.math.MathHelper;
import com.helger.commons.state.EChange;
import com.helger.masterdata.currency.ECurrency;
/**
* Writable version of a currency value. The reading methods are inherited from
* {@link ICurrencyValue}.
*
* @author Philip Helger
*/
public interface IMutableCurrencyValue extends ICurrencyValue, ICloneable
{
@Nonnull
EChange setCurrency (@Nonnull ECurrency eCurrency);
@Nonnull
@CheckReturnValue
IMutableCurrencyValue getAdded (@Nonnull BigDecimal aValue);
@Nonnull
@CheckReturnValue
default IMutableCurrencyValue getAdded (final long nValue)
{
if (nValue == 0)
return this;
return getAdded (MathHelper.toBigDecimal (nValue));
}
@Nonnull
@CheckReturnValue
IMutableCurrencyValue getSubtracted (@Nonnull BigDecimal aValue);
@Nonnull
@CheckReturnValue
default IMutableCurrencyValue getSubtracted (final long nValue)
{
if (nValue == 0)
return this;
return getSubtracted (MathHelper.toBigDecimal (nValue));
}
@Nonnull
@CheckReturnValue
IMutableCurrencyValue getMultiplied (@Nonnull BigDecimal aValue);
@Nonnull
@CheckReturnValue
default IMutableCurrencyValue getMultiplied (final long nValue)
{
if (nValue == 1)
return this;
return getMultiplied (MathHelper.toBigDecimal (nValue));
}
@Nonnull
@CheckReturnValue
IMutableCurrencyValue getDivided (@Nonnull BigDecimal aValue);
@Nonnull
@CheckReturnValue
default IMutableCurrencyValue getDivided (final long nValue)
{
if (nValue == 1)
return this;
return getDivided (MathHelper.toBigDecimal (nValue));
}
@Nonnull
EChange setValue (@Nonnull BigDecimal aValue);
void addValue (@Nonnull BigDecimal aValue);
}