LSQMPointRecord.java

  1. package org.drip.dynamics.evolution;

  2. /*
  3.  * -*- mode: java; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*-
  4.  */

  5. /*!
  6.  * Copyright (C) 2020 Lakshmi Krishnamurthy
  7.  * Copyright (C) 2019 Lakshmi Krishnamurthy
  8.  * Copyright (C) 2018 Lakshmi Krishnamurthy
  9.  * Copyright (C) 2017 Lakshmi Krishnamurthy
  10.  * Copyright (C) 2016 Lakshmi Krishnamurthy
  11.  * Copyright (C) 2015 Lakshmi Krishnamurthy
  12.  *
  13.  *  This file is part of DROP, an open-source library targeting analytics/risk, transaction cost analytics,
  14.  *      asset liability management analytics, capital, exposure, and margin analytics, valuation adjustment
  15.  *      analytics, and portfolio construction analytics within and across fixed income, credit, commodity,
  16.  *      equity, FX, and structured products. It also includes auxiliary libraries for algorithm support,
  17.  *      numerical analysis, numerical optimization, spline builder, model validation, statistical learning,
  18.  *      and computational support.
  19.  *  
  20.  *      https://lakshmidrip.github.io/DROP/
  21.  *  
  22.  *  DROP is composed of three modules:
  23.  *  
  24.  *  - DROP Product Core - https://lakshmidrip.github.io/DROP-Product-Core/
  25.  *  - DROP Portfolio Core - https://lakshmidrip.github.io/DROP-Portfolio-Core/
  26.  *  - DROP Computational Core - https://lakshmidrip.github.io/DROP-Computational-Core/
  27.  *
  28.  *  DROP Product Core implements libraries for the following:
  29.  *  - Fixed Income Analytics
  30.  *  - Loan Analytics
  31.  *  - Transaction Cost Analytics
  32.  *
  33.  *  DROP Portfolio Core implements libraries for the following:
  34.  *  - Asset Allocation Analytics
  35.  *  - Asset Liability Management Analytics
  36.  *  - Capital Estimation Analytics
  37.  *  - Exposure Analytics
  38.  *  - Margin Analytics
  39.  *  - XVA Analytics
  40.  *
  41.  *  DROP Computational Core implements libraries for the following:
  42.  *  - Algorithm Support
  43.  *  - Computation Support
  44.  *  - Function Analysis
  45.  *  - Model Validation
  46.  *  - Numerical Analysis
  47.  *  - Numerical Optimizer
  48.  *  - Spline Builder
  49.  *  - Statistical Learning
  50.  *
  51.  *  Documentation for DROP is Spread Over:
  52.  *
  53.  *  - Main                     => https://lakshmidrip.github.io/DROP/
  54.  *  - Wiki                     => https://github.com/lakshmiDRIP/DROP/wiki
  55.  *  - GitHub                   => https://github.com/lakshmiDRIP/DROP
  56.  *  - Repo Layout Taxonomy     => https://github.com/lakshmiDRIP/DROP/blob/master/Taxonomy.md
  57.  *  - Javadoc                  => https://lakshmidrip.github.io/DROP/Javadoc/index.html
  58.  *  - Technical Specifications => https://github.com/lakshmiDRIP/DROP/tree/master/Docs/Internal
  59.  *  - Release Versions         => https://lakshmidrip.github.io/DROP/version.html
  60.  *  - Community Credits        => https://lakshmidrip.github.io/DROP/credits.html
  61.  *  - Issues Catalog           => https://github.com/lakshmiDRIP/DROP/issues
  62.  *  - JUnit                    => https://lakshmidrip.github.io/DROP/junit/index.html
  63.  *  - Jacoco                   => https://lakshmidrip.github.io/DROP/jacoco/index.html
  64.  *
  65.  *  Licensed under the Apache License, Version 2.0 (the "License");
  66.  *      you may not use this file except in compliance with the License.
  67.  *  
  68.  *  You may obtain a copy of the License at
  69.  *      http://www.apache.org/licenses/LICENSE-2.0
  70.  *  
  71.  *  Unless required by applicable law or agreed to in writing, software
  72.  *      distributed under the License is distributed on an "AS IS" BASIS,
  73.  *      WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  74.  *  
  75.  *  See the License for the specific language governing permissions and
  76.  *      limitations under the License.
  77.  */

  78. /**
  79.  * <i>LSQMPointRecord</i> contains the Record of the Evolving Point Latent State Quantification Metrics.
  80.  *
  81.  *  <br><br>
  82.  *  <ul>
  83.  *      <li><b>Module </b> = <a href = "https://github.com/lakshmiDRIP/DROP/tree/master/ProductCore.md">Product Core Module</a></li>
  84.  *      <li><b>Library</b> = <a href = "https://github.com/lakshmiDRIP/DROP/tree/master/FixedIncomeAnalyticsLibrary.md">Fixed Income Analytics</a></li>
  85.  *      <li><b>Project</b> = <a href = "https://github.com/lakshmiDRIP/DROP/tree/master/src/main/java/org/drip/dynamics/README.md">HJM, Hull White, LMM, and SABR Dynamic Evolution Models</a></li>
  86.  *      <li><b>Package</b> = <a href = "https://github.com/lakshmiDRIP/DROP/tree/master/src/main/java/org/drip/dynamics/evolution/README.md">Latent State Evolution Edges/Vertexes</a></li>
  87.  *  </ul>
  88.  *
  89.  * @author Lakshmi Krishnamurthy
  90.  */

  91. public class LSQMPointRecord {
  92.     private java.util.Map<java.lang.String, java.util.Map<java.lang.String, java.lang.Double>> _mmLSQMValue =
  93.         new java.util.HashMap<java.lang.String, java.util.Map<java.lang.String, java.lang.Double>>();

  94.     /**
  95.      * Empty LSQMPointRecord Constructor
  96.      */

  97.     public LSQMPointRecord()
  98.     {
  99.     }

  100.     /**
  101.      * Retrieve the Latent State Labels
  102.      *
  103.      * @return The Latent State Labels
  104.      */

  105.     public java.util.Set<java.lang.String> latentStateLabel()
  106.     {
  107.         return _mmLSQMValue.keySet();
  108.     }

  109.     /**
  110.      * Indicate if Quantification Metrics are available for the specified Latent State
  111.      *
  112.      * @param lsl The Latent State Label
  113.      *
  114.      * @return TRUE - Quantification Metrics are available for the specified Latent State
  115.      */

  116.     public boolean containsLatentState (
  117.         final org.drip.state.identifier.LatentStateLabel lsl)
  118.     {
  119.         return null == lsl ? false : _mmLSQMValue.containsKey (lsl.fullyQualifiedName());
  120.     }

  121.     /**
  122.      * Set the LSQM Value
  123.      *
  124.      * @param lsl The Latent State Label
  125.      * @param strQM The Quantification Metric
  126.      * @param dblValue The QM's Value
  127.      *
  128.      * @return TRUE - The QM successfully set
  129.      */

  130.     public boolean setQM (
  131.         final org.drip.state.identifier.LatentStateLabel lsl,
  132.         final java.lang.String strQM,
  133.         final double dblValue)
  134.     {
  135.         if (null == lsl || null == strQM || strQM.isEmpty() || !org.drip.numerical.common.NumberUtil.IsValid
  136.             (dblValue))
  137.             return false;

  138.         java.lang.String strLatentStateLabel = lsl.fullyQualifiedName();

  139.         java.util.Map<java.lang.String, java.lang.Double> mapLSQM = _mmLSQMValue.containsKey
  140.             (strLatentStateLabel) ? _mmLSQMValue.get (strLatentStateLabel) : new
  141.                 java.util.HashMap<java.lang.String, java.lang.Double>();

  142.         mapLSQM.put (strQM, dblValue);

  143.         _mmLSQMValue.put (lsl.fullyQualifiedName(), mapLSQM);

  144.         return true;
  145.     }

  146.     /**
  147.      * Indicate if the Value for the specified Quantification Metric is available
  148.      *
  149.      * @param lsl The Latent State Label
  150.      * @param strQM The Quantification Metric
  151.      *
  152.      * @return TRUE - The Requested Value is available
  153.      */

  154.     public boolean containsQM (
  155.         final org.drip.state.identifier.LatentStateLabel lsl,
  156.         final java.lang.String strQM)
  157.     {
  158.         if (null == lsl || null == strQM || strQM.isEmpty()) return false;

  159.         java.lang.String strLatentStateLabel = lsl.fullyQualifiedName();

  160.         return _mmLSQMValue.containsKey (strLatentStateLabel) && _mmLSQMValue.get
  161.             (strLatentStateLabel).containsKey (strQM);
  162.     }

  163.     /**
  164.      * Retrieve the specified Quantification Metric Value
  165.      *
  166.      * @param lsl The Latent State Label
  167.      * @param strQM The Quantification Metric
  168.      *
  169.      * @return The Quantification Metric Value
  170.      *
  171.      * @throws java.lang.Exception Thrown if the Quantification Metric is not available
  172.      */

  173.     public double qm (
  174.         final org.drip.state.identifier.LatentStateLabel lsl,
  175.         final java.lang.String strQM)
  176.         throws java.lang.Exception
  177.     {
  178.         if (null == lsl || null == strQM || strQM.isEmpty())
  179.             throw new java.lang.Exception ("LSQMPointRecord::qm => Invalid Inputs");

  180.         java.lang.String strLatentStateLabel = lsl.fullyQualifiedName();

  181.         if (!_mmLSQMValue.containsKey (strLatentStateLabel))
  182.             throw new java.lang.Exception ("LSQMPointRecord::qm => Invalid Inputs");

  183.         java.util.Map<java.lang.String, java.lang.Double> mapLSQM = _mmLSQMValue.get (strLatentStateLabel);

  184.         if (!mapLSQM.containsKey (strQM))
  185.             throw new java.lang.Exception ("LSQMPointRecord::qm => No LSQM Entry");

  186.         return mapLSQM.get (strQM);
  187.     }
  188. }