Package com.opengamma.financial.security.option

Examples of com.opengamma.financial.security.option.ExerciseTypeNameVisitor


   */
  public static final Object INSTANCE = new FreemarkerCustomRenderer();

  public String printExerciseType(ExerciseType exerciseType) {
    ArgumentChecker.notNull(exerciseType, "exerciseType");
    String result = exerciseType.accept(new ExerciseTypeNameVisitor());
    return result;
  }
View Full Code Here


    super(OptionExerciseType.class, OptionExerciseType.values());
  }

  @Override
  protected String enumToStringNoCache(OptionExerciseType value) {
    return value.accept(new ExerciseTypeNameVisitor());
  }
View Full Code Here

TOP

Related Classes of com.opengamma.financial.security.option.ExerciseTypeNameVisitor

Copyright © 2018 www.massapicom. 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.