MoneyWiseAnalysisValuesResource.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.lethe.data.analysis.values;
import io.github.tonywasher.joceanus.metis.data.MetisDataItem.MetisDataFieldId;
import io.github.tonywasher.joceanus.moneywise.data.basic.MoneyWiseBasicResource;
import io.github.tonywasher.joceanus.moneywise.data.statics.MoneyWiseStaticResource;
import io.github.tonywasher.joceanus.oceanus.resource.OceanusBundleId;
import io.github.tonywasher.joceanus.oceanus.resource.OceanusBundleLoader;
import java.util.ResourceBundle;
/**
* Resource IDs for MoneyWise Analysis Fields.
*/
public enum MoneyWiseAnalysisValuesResource
implements OceanusBundleId, MetisDataFieldId {
/**
* AccountAttr Valuation.
*/
ACCOUNTATTR_VALUATION("AccountAttr.Valuation"),
/**
* AccountAttr DepositRate.
*/
ACCOUNTATTR_DEPOSITRATE(MoneyWiseBasicResource.MONEYWISEDATA_FIELD_RATE),
/**
* AccountAttr Delta.
*/
ACCOUNTATTR_VALUEDELTA("AccountAttr.ValueDelta"),
/**
* AccountAttr Profit.
*/
ACCOUNTATTR_PROFIT("AccountAttr.Profit"),
/**
* AccountAttr LocalValue.
*/
ACCOUNTATTR_LOCALVALUE("AccountAttr.LocalValue"),
/**
* AccountAttr Foreign Valuation.
*/
ACCOUNTATTR_FOREIGNVALUE("AccountAttr.ForeignValue"),
/**
* AccountAttr CurrencyFluctuation.
*/
ACCOUNTATTR_CURRENCYFLUCT("AccountAttr.CurrencyFluct"),
/**
* AccountAttr ExchangeRate.
*/
ACCOUNTATTR_EXCHANGERATE(MoneyWiseBasicResource.XCHGRATE_NAME),
/**
* AccountAttr Maturity.
*/
ACCOUNTATTR_MATURITY("AccountAttr.Maturity"),
/**
* AccountAttr Valuation.
*/
ACCOUNTATTR_SPEND("AccountAttr.Spend"),
/**
* AccountAttr BadDebt.
*/
ACCOUNTATTR_BADDEBTCAPITAL(MoneyWiseStaticResource.TRANSTYPE_BADDEBTCAPITAL),
/**
* AccountAttr BadDebt.
*/
ACCOUNTATTR_BADDEBTINTEREST(MoneyWiseStaticResource.TRANSTYPE_BADDEBTINTEREST),
/**
* PayeeAttr Valuation.
*/
PAYEEATTR_INCOME("PayeeAttr.Income"),
/**
* PayeeAttr Valuation.
*/
PAYEEATTR_EXPENSE("PayeeAttr.Expense"),
/**
* SecurityAttr Units.
*/
SECURITYATTR_UNITS(MoneyWiseBasicResource.MONEYWISEDATA_FIELD_UNITS),
/**
* SecurityAttr ResidualCost.
*/
SECURITYATTR_RESIDUALCOST("SecurityAttr.ResidualCost"),
/**
* SecurityAttr RealisedGains.
*/
SECURITYATTR_REALISEDGAINS("SecurityAttr.RealisedGains"),
/**
* SecurityAttr GrowthAdjustment.
*/
SECURITYATTR_GROWTHADJUST("SecurityAttr.GrowthAdjust"),
/**
* SecurityAttr ForeignValueDelta.
*/
SECURITYATTR_FOREIGNVALUEDELTA("SecurityAttr.ForeignValueDelta"),
/**
* SecurityAttr Invested.
*/
SECURITYATTR_INVESTED("SecurityAttr.Invested"),
/**
* SecurityAttr Foreign Invested.
*/
SECURITYATTR_FOREIGNINVESTED("SecurityAttr.ForeignInvested"),
/**
* SecurityAttr Dividend.
*/
SECURITYATTR_DIVIDEND("SecurityAttr.Dividend"),
/**
* SecurityAttr MarketGrowth.
*/
SECURITYATTR_MARKETGROWTH("SecurityAttr.MarketGrowth"),
/**
* SecurityAttr ForeignMarketGrowth.
*/
SECURITYATTR_FOREIGNMARKETGROWTH("SecurityAttr.ForeignMarketGrowth"),
/**
* SecurityAttr LocalMarketGrowth.
*/
SECURITYATTR_LOCALMARKETGROWTH("SecurityAttr.LocalMarketGrowth"),
/**
* SecurityAttr MarketProfit.
*/
SECURITYATTR_MARKETPROFIT("SecurityAttr.MarketProfit"),
/**
* SecurityAttr Profit.
*/
SECURITYATTR_PROFIT("SecurityAttr.Profit"),
/**
* SecurityAttr Consideration.
*/
SECURITYATTR_CONSIDER("SecurityAttr.Consider"),
/**
* SecurityAttr CashConsideration/ReturnedCash.
*/
SECURITYATTR_RETURNEDCASH("SecurityAttr.ReturnedCash"),
/**
* SecurityAttr StockConsideration/XferredValue.
*/
SECURITYATTR_XFERREDVALUE("SecurityAttr.XferredValue"),
/**
* SecurityAttr XferredCost.
*/
SECURITYATTR_XFERREDCOST("SecurityAttr.XferredCost"),
/**
* SecurityAttr CostDilution.
*/
SECURITYATTR_COSTDILUTION("SecurityAttr.CostDilution"),
/**
* SecurityAttr CashInvested.
*/
SECURITYATTR_CASHINVESTED("SecurityAttr.CashInvested"),
/**
* SecurityAttr CapitalGain.
*/
SECURITYATTR_CAPITALGAIN("SecurityAttr.CapitalGain"),
/**
* SecurityAttr AllowedCost.
*/
SECURITYATTR_ALLOWEDCOST("SecurityAttr.AllowedCost"),
/**
* SecurityAttr Price.
*/
SECURITYATTR_PRICE(MoneyWiseBasicResource.MONEYWISEDATA_FIELD_PRICE),
/**
* SecurityAttr CashType.
*/
SECURITYATTR_CASHTYPE("SecurityAttr.CashType"),
/**
* TaxAttr Gross.
*/
TAXATTR_GROSS("TaxAttr.Gross"),
/**
* TaxAttr Nett.
*/
TAXATTR_NETT("TaxAttr.Nett"),
/**
* TaxAttr Tax.
*/
TAXATTR_TAX("TaxAttr.Tax");
/**
* The Resource Loader.
*/
private static final OceanusBundleLoader LOADER = OceanusBundleLoader.getLoader(MoneyWiseAnalysisValuesResource.class.getCanonicalName(),
ResourceBundle::getBundle);
/**
* The Id.
*/
private final String theKeyName;
/**
* The Value.
*/
private String theValue;
/**
* Constructor.
*
* @param pKeyName the key name
*/
MoneyWiseAnalysisValuesResource(final String pKeyName) {
theKeyName = pKeyName;
}
/**
* Constructor.
*
* @param pResource the underlying resource
*/
MoneyWiseAnalysisValuesResource(final OceanusBundleId pResource) {
theKeyName = null;
theValue = pResource.getValue();
}
@Override
public String getKeyName() {
return theKeyName;
}
@Override
public String getNameSpace() {
return "MoneyWise.analysis";
}
@Override
public String getValue() {
/* If we have not initialised the value */
if (theValue == null) {
/* Derive the value */
theValue = LOADER.getValue(this);
}
/* return the value */
return theValue;
}
@Override
public String getId() {
return getValue();
}
}