/** * Copyright (C) 2013 - present by OpenGamma Inc. and the OpenGamma group of companies * * Please see distribution for license. */ package com.opengamma.analytics.financial.credit.portfoliolosssimulationmodel; /** * Enumerate the simulated default state of an obligor */ public enum SimulatedObligorDefaultState { /** * Not defaulted */ NOTDEFAULTED, /** * Defaulted */ DEFAULTED; }