/** * Copyright (C) 2013 - present by OpenGamma Inc. and the OpenGamma group of companies * * Please see distribution for license. */ package com.opengamma.analytics.financial.credit.obligor; /** * Enumerate the legal domicile of the reference entity */ public enum LegalDomicile { /** * */ AFRICA, /** * */ ASIA, /** * */ CARIBBEAN, /** * */ EASTERNEUROPE, /** * */ EUROPE, /** * */ INDIA, /** * */ LATINAMERICA, /** * */ MIDDLEEAST, /** * */ NORTHAMERICA, /** * */ OCEANIA, /** * */ OFFSHORE, /** * */ PACIFIC, /** * */ SUPRA, /** * */ NONE; // TODO : Need to make these fields more realistic }