MoneyWiseUKAgeAllowance.java
/*
* MoneyWise: Finance Application
* Copyright 2012-2026. Tony Washer
*
* 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 io.github.tonywasher.joceanus.moneywise.tax.uk;
import io.github.tonywasher.joceanus.oceanus.date.OceanusDate;
import io.github.tonywasher.joceanus.oceanus.date.OceanusFiscalYear;
import io.github.tonywasher.joceanus.oceanus.decimal.OceanusMoney;
import io.github.tonywasher.joceanus.oceanus.format.OceanusDataFormatter;
import io.github.tonywasher.joceanus.metis.field.MetisFieldSet;
import io.github.tonywasher.joceanus.moneywise.tax.MoneyWiseMarginalReduction;
import io.github.tonywasher.joceanus.moneywise.tax.MoneyWiseTaxResource;
import java.time.Month;
/**
* AgeAdapted UK Tax Allowance.
*/
public class MoneyWiseUKAgeAllowance
extends MoneyWiseUKBasicAllowance {
/**
* Local Report fields.
*/
private static final MetisFieldSet<MoneyWiseUKAgeAllowance> FIELD_DEFS = MetisFieldSet.newFieldSet(MoneyWiseUKAgeAllowance.class);
/*
* Declare Fields.
*/
static {
FIELD_DEFS.declareLocalField(MoneyWiseTaxResource.ALLOWANCE_LOAGE, MoneyWiseUKAgeAllowance::getLoAgeAllowance);
FIELD_DEFS.declareLocalField(MoneyWiseTaxResource.ALLOWANCE_HIAGE, MoneyWiseUKAgeAllowance::getHiAgeAllowance);
FIELD_DEFS.declareLocalField(MoneyWiseTaxResource.LIMIT_AGEALLOWANCE, MoneyWiseUKAgeAllowance::getAgeAllowanceLimit);
}
/**
* Age Allowance minimum.
*/
private static final OceanusDate BIRTHDAY_MINIMUM = OceanusFiscalYear.UK.endOfYear(new OceanusDate(1948, Month.JANUARY, 1));
/**
* HiAge Allowance minimum.
*/
private static final OceanusDate HI_BIRTHDAY_MINIMUM = OceanusFiscalYear.UK.endOfYear(new OceanusDate(1938, Month.JANUARY, 1));
/**
* Low Age Limit.
*/
private static final int LO_AGE_BOUNDARY = 65;
/**
* Hi Age Limit.
*/
private static final int HI_AGE_BOUNDARY = 75;
/**
* Old Hi Age Limit.
*/
private static final int OLD_HI_AGE_BOUNDARY = 80;
/**
* HiAgeBoundary.
*/
private final int theHiAgeBoundary;
/**
* LoAgeAllowance.
*/
private final OceanusMoney theLoAgeAllowance;
/**
* HiAgeAllowance.
*/
private final OceanusMoney theHiAgeAllowance;
/**
* AgeAllowanceLimit.
*/
private final OceanusMoney theAgeAllowanceLimit;
/**
* Constructor.
*
* @param pAllowance the allowance
* @param pRentalAllowance the rental allowance
* @param pCapitalAllowance the capital allowance
* @param pLoAgeAllowance the low age allowance
* @param pHiAgeAllowance the high age allowance
* @param pAgeAllowanceLimit the age allowance limit
* @param pReduction the marginal reduction
*/
protected MoneyWiseUKAgeAllowance(final OceanusMoney pAllowance,
final OceanusMoney pRentalAllowance,
final OceanusMoney pCapitalAllowance,
final OceanusMoney pLoAgeAllowance,
final OceanusMoney pHiAgeAllowance,
final OceanusMoney pAgeAllowanceLimit,
final MoneyWiseMarginalReduction pReduction) {
super(pAllowance, pRentalAllowance, pCapitalAllowance, pReduction);
theLoAgeAllowance = pLoAgeAllowance;
theHiAgeAllowance = pHiAgeAllowance;
theAgeAllowanceLimit = pAgeAllowanceLimit;
theHiAgeBoundary = MoneyWiseMarginalReduction.ONEINTWO.equals(pReduction)
? HI_AGE_BOUNDARY
: OLD_HI_AGE_BOUNDARY;
}
/**
* Constructor.
*
* @param pAllowance the allowance
* @param pRentalAllowance the rental allowance
* @param pCapitalAllowance the capital allowance
* @param pLoAgeAllowance the low age allowance
* @param pHiAgeAllowance the high age allowance
* @param pAgeAllowanceLimit the age allowance limit
*/
protected MoneyWiseUKAgeAllowance(final OceanusMoney pAllowance,
final OceanusMoney pRentalAllowance,
final OceanusMoney pCapitalAllowance,
final OceanusMoney pLoAgeAllowance,
final OceanusMoney pHiAgeAllowance,
final OceanusMoney pAgeAllowanceLimit) {
this(pAllowance, pRentalAllowance, pCapitalAllowance, pLoAgeAllowance,
pHiAgeAllowance, pAgeAllowanceLimit, MoneyWiseMarginalReduction.ONEINTWO);
}
/**
* Constructor.
*
* @param pAllowance the allowance
* @param pRentalAllowance the rental allowance
* @param pCapitalAllowance the capital allowance
* @param pLoAgeAllowance the low age allowance
* @param pAgeAllowanceLimit the age allowance limit
*/
protected MoneyWiseUKAgeAllowance(final OceanusMoney pAllowance,
final OceanusMoney pRentalAllowance,
final OceanusMoney pCapitalAllowance,
final OceanusMoney pLoAgeAllowance,
final OceanusMoney pAgeAllowanceLimit) {
this(pAllowance, pRentalAllowance, pCapitalAllowance, pLoAgeAllowance, null, pAgeAllowanceLimit, MoneyWiseMarginalReduction.TWOINTHREE);
}
/**
* Obtain the loAgeAllowance.
*
* @return the Allowance
*/
protected OceanusMoney getLoAgeAllowance() {
return theLoAgeAllowance;
}
/**
* Obtain the hiAgeAllowance.
*
* @return the Allowance
*/
protected OceanusMoney getHiAgeAllowance() {
return theHiAgeAllowance;
}
/**
* Obtain the ageAllowanceLimit.
*
* @return the Limit
*/
protected OceanusMoney getAgeAllowanceLimit() {
return theAgeAllowanceLimit;
}
@Override
protected OceanusMoney calculateBasicAllowance(final MoneyWiseUKTaxConfig pConfig) {
/* Access the client age */
final OceanusDate myBirthday = pConfig.getBirthday();
final Integer myAge = pConfig.getClientAge();
boolean hasAgeAllowance = false;
/* Determine the allowance */
final OceanusMoney myBaseAllowance = getAllowance();
OceanusMoney myAllowance = myBaseAllowance;
if ((myBirthday.compareTo(HI_BIRTHDAY_MINIMUM) < 0)
&& (theHiAgeAllowance != null)
&& (myAge >= theHiAgeBoundary)) {
hasAgeAllowance = true;
myAllowance = theHiAgeAllowance;
} else if ((myBirthday.compareTo(BIRTHDAY_MINIMUM) < 0)
&& (myAge >= LO_AGE_BOUNDARY)) {
hasAgeAllowance = true;
myAllowance = theLoAgeAllowance;
}
/* If we have an age related allowance and we are above the allowance limit */
final OceanusMoney myGross = pConfig.getGrossTaxable();
if (hasAgeAllowance
&& (myGross.compareTo(theAgeAllowanceLimit) > 0)) {
/* Calculate and apply the reduction */
final OceanusMoney myReduction = getMarginalReduction().calculateReduction(myGross, theAgeAllowanceLimit);
myAllowance = new OceanusMoney(myAllowance);
myAllowance.subtractAmount(myReduction);
/* If we have reduced below the Base Allowance */
if (myAllowance.compareTo(myBaseAllowance) < 0) {
/* Return to the basic allowance */
hasAgeAllowance = false;
myAllowance = myBaseAllowance;
}
}
/* Set whether we have an age related allowance */
pConfig.setHasAgeRelatedAllowance(hasAgeAllowance);
/* return the allowance */
return myAllowance;
}
@Override
public MetisFieldSet<? extends MoneyWiseUKAgeAllowance> getDataFieldSet() {
return FIELD_DEFS;
}
@Override
public String formatObject(final OceanusDataFormatter pFormatter) {
return FIELD_DEFS.getName();
}
}