Package com.opengamma.util.i18n

Source Code of com.opengamma.util.i18n.CountryFudgeSecondaryType

/**
* Copyright (C) 2009 - present by OpenGamma Inc. and the OpenGamma group of companies
*
* Please see distribution for license.
*/
package com.opengamma.util.i18n;

import org.fudgemsg.types.FudgeSecondaryType;
import org.fudgemsg.types.SecondaryFieldType;
import org.fudgemsg.wire.types.FudgeWireType;

import com.opengamma.id.UniqueId;

/**
* Fudge secondary type for {@code Country} converting to a string.
*/
public final class CountryFudgeSecondaryType extends SecondaryFieldType<Country, String> {

  /**
   * Singleton instance of the type.
   */
  @FudgeSecondaryType
  public static final CountryFudgeSecondaryType INSTANCE = new CountryFudgeSecondaryType();

  /** Serialization version. */
  private static final long serialVersionUID = 1L;

  /**
   * Restricted constructor.
   */
  private CountryFudgeSecondaryType() {
    super(FudgeWireType.STRING, Country.class);
  }

  //-------------------------------------------------------------------------
  @Override
  public String secondaryToPrimary(Country object) {
    return object.getCode();
  }

  @Override
  public Country primaryToSecondary(final String isoCodeOrUniqueId) {
    if (isoCodeOrUniqueId.length() == 1) {
      // 2 letters means ISO code
      return Country.of(isoCodeOrUniqueId);
    } else if (isoCodeOrUniqueId.startsWith(Country.OBJECT_SCHEME)) {
      // try as a unique id
      final UniqueId uniqueId = UniqueId.parse(isoCodeOrUniqueId);
      if (Country.OBJECT_SCHEME.equals(uniqueId.getScheme())) {
        return Country.of(uniqueId.getValue());
      }
    }
    throw new IllegalArgumentException("Not a unique identifier or country ISO code - '"
        + isoCodeOrUniqueId + "'");
  }

}
TOP

Related Classes of com.opengamma.util.i18n.CountryFudgeSecondaryType

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.