Package org.jquantlib.termstructures

Examples of org.jquantlib.termstructures.AbstractYieldTermStructure


*/
public class USDLiborON extends DailyTenorUSDLibor {

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


*/
public class GBPLibor extends Libor {

  public GBPLibor(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 Jibar extends IborIndex {

  public Jibar(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 Zibor extends IborIndex {

  public Zibor(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 GBPLiborON extends DailyTenorGBPLibor {

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

*/
public class USDLibor extends Libor {

  public USDLibor(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 DailyTenorGBPLibor extends DailyTenorLibor {

  public DailyTenorGBPLibor(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 DailyTenorUSDLibor extends DailyTenorLibor {

  public DailyTenorUSDLibor(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 DailyTenorJPYLibor extends DailyTenorLibor {

  public DailyTenorJPYLibor(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 Cdor extends IborIndex {

  public Cdor(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

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.