/** * Copyright (C) 2013 - present by OpenGamma Inc. and the OpenGamma group of companies * * Please see distribution for license. */ package com.opengamma.financial.security.irs; /** * Details whether a swap leg is pay or receive. */ public enum PayReceiveType { /** * A pay leg. */ PAY, /** * A receive leg. */ RECEIVE }