quickfix.fix50sp1.component.YieldData类的使用及代码示例

x33g5p2x  于2022-02-05 转载在 其他  
字(3.5k)|赞(0)|评价(0)|浏览(183)

本文整理了Java中quickfix.fix50sp1.component.YieldData类的一些代码示例,展示了YieldData类的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。YieldData类的具体详情如下:
包路径:quickfix.fix50sp1.component.YieldData
类名称:YieldData

YieldData介绍

暂无

代码示例

代码示例来源:origin: org.quickfixj/quickfixj-messages-all

public quickfix.field.YieldRedemptionPrice get(quickfix.field.YieldRedemptionPrice value) throws FieldNotFound {
  getField(value);
  return value;
}

代码示例来源:origin: org.quickfixj/quickfixj-messages-all

public boolean isSetYield() {
  return isSetField(236);
}

代码示例来源:origin: org.quickfixj/quickfixj-all

public void set(quickfix.field.YieldRedemptionPriceType value) {
  setField(value);
}

代码示例来源:origin: org.quickfixj/quickfixj-messages-all

public quickfix.field.YieldType getYieldType() throws FieldNotFound {
  return get(new quickfix.field.YieldType());
}

代码示例来源:origin: org.quickfixj/quickfixj-messages-all

public quickfix.fix50sp1.component.YieldData getYieldData() throws FieldNotFound {
  return get(new quickfix.fix50sp1.component.YieldData());
}

代码示例来源:origin: org.quickfixj/quickfixj-messages-all

public quickfix.field.Yield getYield() throws FieldNotFound {
  return get(new quickfix.field.Yield());
}

代码示例来源:origin: org.quickfixj/quickfixj-messages-all

public quickfix.fix50sp1.component.YieldData getYieldData() throws FieldNotFound {
  return get(new quickfix.fix50sp1.component.YieldData());
}

代码示例来源:origin: org.quickfixj/quickfixj-all

public quickfix.field.Yield get(quickfix.field.Yield value) throws FieldNotFound {
  getField(value);
  return value;
}

代码示例来源:origin: org.apache.servicemix.bundles/org.apache.servicemix.bundles.quickfix

public quickfix.field.YieldRedemptionPriceType getYieldRedemptionPriceType() throws FieldNotFound {
  return get(new quickfix.field.YieldRedemptionPriceType());
}

代码示例来源:origin: org.quickfixj/quickfixj-messages-all

public boolean isSet(quickfix.field.YieldCalcDate field) {
  return isSetField(field);
}

代码示例来源:origin: org.apache.servicemix.bundles/org.apache.servicemix.bundles.quickfix

public void set(quickfix.field.YieldRedemptionPriceType value) {
  setField(value);
}

代码示例来源:origin: org.quickfixj/quickfixj-all

public quickfix.fix50sp1.component.YieldData getYieldData() throws FieldNotFound {
  return get(new quickfix.fix50sp1.component.YieldData());
}

代码示例来源:origin: org.apache.servicemix.bundles/org.apache.servicemix.bundles.quickfix

public quickfix.field.YieldCalcDate get(quickfix.field.YieldCalcDate value) throws FieldNotFound {
  getField(value);
  return value;
}

代码示例来源:origin: org.quickfixj/quickfixj-messages-fix50sp1

public quickfix.field.YieldRedemptionPriceType getYieldRedemptionPriceType() throws FieldNotFound {
  return get(new quickfix.field.YieldRedemptionPriceType());
}

代码示例来源:origin: org.quickfixj/quickfixj-all

public boolean isSet(quickfix.field.YieldType field) {
  return isSetField(field);
}

代码示例来源:origin: org.quickfixj/quickfixj-all

public void set(quickfix.field.YieldRedemptionPrice value) {
  setField(value);
}

代码示例来源:origin: org.quickfixj/quickfixj-all

public quickfix.fix50sp1.component.YieldData getYieldData() throws FieldNotFound {
  return get(new quickfix.fix50sp1.component.YieldData());
}

代码示例来源:origin: org.apache.servicemix.bundles/org.apache.servicemix.bundles.quickfix

public quickfix.field.YieldRedemptionPrice get(quickfix.field.YieldRedemptionPrice value) throws FieldNotFound {
  getField(value);
  return value;
}

代码示例来源:origin: org.quickfixj/quickfixj-messages-all

public quickfix.field.YieldRedemptionDate getYieldRedemptionDate() throws FieldNotFound {
  return get(new quickfix.field.YieldRedemptionDate());
}

代码示例来源:origin: org.quickfixj/quickfixj-all

public boolean isSet(quickfix.field.Yield field) {
  return isSetField(field);
}

相关文章