Examples of CurveKey


Examples of com.opengamma.core.marketdatasnapshot.CurveKey

  }

  @Override
  CurveKey getKey(ValueSpecification spec) {
    final String curve = getSingleProperty(spec, ValuePropertyNames.CURVE);
    return new CurveKey(curve);
  }
View Full Code Here

Examples of com.opengamma.core.marketdatasnapshot.CurveKey

      Map<String, String> currentRow = _sheetReader.loadNextRow();

      // When rows are complete create snapshot elements from temporary structures
      if (currentRow == null) {
        for (Map.Entry<String, ManageableCurveSnapshot> entry : curvesBuilder.entrySet()) {
          _curves.put(new CurveKey(entry.getKey()), entry.getValue());
        }
        for (Map.Entry<String, Pair<YieldCurveKey, ManageableYieldCurveSnapshot>> entry : yieldCurveBuilder.entrySet()) {
          _yieldCurve.put(entry.getValue().getFirst(), entry.getValue().getSecond());
        }
        for (Map.Entry<String, Pair<VolatilitySurfaceKey, ManageableVolatilitySurfaceSnapshot>> entry : surfaceBuilder.entrySet()) {
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.