Package com.opengamma.util.tuple

Examples of com.opengamma.util.tuple.Pair


   */
  @SuppressWarnings({"unchecked", "rawtypes" })
  public Map getMap() {
    Map map = new LinkedHashMap();
    for (Object obj : getPairs()) {
      Pair pair = (Pair) obj;
      map.put(pair.getFirst(), pair.getSecond());
    }
    return map;
  }
View Full Code Here

TOP

Related Classes of com.opengamma.util.tuple.Pair

Copyright © 2018 www.massapicom. 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.