Package org.jquantlib.termstructures

Examples of org.jquantlib.termstructures.AbstractYieldTermStructure


*/
public class NZDLibor extends Libor {

  public NZDLibor(final Period tenor) {
    this(tenor, new Handle<YieldTermStructure>(
            new AbstractYieldTermStructure() {
              @Override
              protected double discountImpl(final double t) {
                throw new UnsupportedOperationException();
              }
              @Override
View Full Code Here


*/
public class DailyTenorCHFLibor extends DailyTenorLibor {

  public DailyTenorCHFLibor(final int settlementDays) {
    this(settlementDays, new Handle<YieldTermStructure>(
            new AbstractYieldTermStructure() {
              @Override
              protected double discountImpl(final double t) {
                throw new UnsupportedOperationException();
              }
              @Override
View Full Code Here

*/
public class CADLibor extends Libor {

  public CADLibor(final Period tenor) {
    this(tenor, new Handle<YieldTermStructure>(
            new AbstractYieldTermStructure() {
              @Override
              protected double discountImpl(final double t) {
                throw new UnsupportedOperationException();
              }
              @Override
View Full Code Here

*/
public class CHFLibor extends Libor {

  public CHFLibor(final Period tenor) {
    this(tenor, new Handle<YieldTermStructure>(
            new AbstractYieldTermStructure() {
              @Override
              protected double discountImpl(final double t) {
                throw new UnsupportedOperationException();
              }
              @Override
View Full Code Here

*/
public class Tibor extends IborIndex {

  public Tibor(final Period tenor) {
    this(tenor, new Handle<YieldTermStructure>(
            new AbstractYieldTermStructure() {
              @Override
              protected double discountImpl(final double t) {
                throw new UnsupportedOperationException();
              }
              @Override
View Full Code Here

  public DiscountingBondEngine() {

      // this(new Handle<YieldTermStructure>(YieldTermStructure.class)); //FIXME::RG::Handle

        this(new Handle<YieldTermStructure>(
                new AbstractYieldTermStructure() {
                    @Override
                    protected double discountImpl(final double t) {
                        throw new UnsupportedOperationException();
                    }
                    @Override
View Full Code Here

        //        final RelinkableHandle<YieldTermStructure> h = new RelinkableHandle<YieldTermStructure>(YieldTermStructure.class);
        //
        // see: http://bugs.jquantlib.org/view.php?id=465
        //
        final RelinkableHandle<YieldTermStructure> h = new RelinkableHandle<YieldTermStructure>(
                new AbstractYieldTermStructure() {
                    @Override
                    protected double discountImpl(final double t) {
                        throw new UnsupportedOperationException();
                    }
                    @Override
View Full Code Here

TOP

Related Classes of org.jquantlib.termstructures.AbstractYieldTermStructure

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.