Class NamedFieldMap

java.lang.Object
org.drip.service.scenario.NamedFieldMap

public class NamedFieldMap
extends java.lang.Object
Author:
Lakshmi Krishnamurthy
  • Constructor Summary

    Constructors
    Constructor Description
    NamedFieldMap​(java.lang.String strName, java.util.Map<java.lang.String,​java.lang.Double> mapValue)
    NamedFieldMap Constructor
  • Method Summary

    Modifier and Type Method Description
    java.lang.String name()
    Retrieve the Field Name
    java.util.Map<java.lang.String,​java.lang.Double> value()
    Retrieve the Field Value Map

    Methods inherited from class java.lang.Object

    equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Constructor Details

    • NamedFieldMap

      public NamedFieldMap​(java.lang.String strName, java.util.Map<java.lang.String,​java.lang.Double> mapValue) throws java.lang.Exception
      NamedFieldMap Constructor
      Parameters:
      strName - Field Name
      mapValue - Field Value Map
      Throws:
      java.lang.Exception - Thrown if the Inputs are Invalid
  • Method Details

    • name

      public java.lang.String name()
      Retrieve the Field Name
      Returns:
      The Field Name
    • value

      public java.util.Map<java.lang.String,​java.lang.Double> value()
      Retrieve the Field Value Map
      Returns:
      The Field Value Map