/** * Copyright (C) 2009 - present by OpenGamma Inc. and the OpenGamma group of companies * * Please see distribution for license. */ package com.opengamma.financial.security.option; /** * The FX barrier option barrier type. */ public enum BarrierType { /** * up. */ UP, /** * Down. */ DOWN, /** * Double. */ DOUBLE, }