quickfix.fix44.component.InstrumentExtension Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of quickfixj-messages-fix44 Show documentation
Show all versions of quickfixj-messages-fix44 Show documentation
QuickFIX/J Message classes for FIX 4.4
The newest version!
package quickfix.fix44.component;
import quickfix.FieldNotFound;
import quickfix.Group;
public class InstrumentExtension extends quickfix.MessageComponent {
static final long serialVersionUID = 20050617;
public static final String MSGTYPE = "";
private int[] componentFields = { 668, 869, };
protected int[] getFields() { return componentFields; }
private int[] componentGroups = { 870, };
protected int[] getGroupFields() { return componentGroups; }
public InstrumentExtension() {
super();
}
public void set(quickfix.field.DeliveryForm value) {
setField(value);
}
public quickfix.field.DeliveryForm get(quickfix.field.DeliveryForm value) throws FieldNotFound {
getField(value);
return value;
}
public quickfix.field.DeliveryForm getDeliveryForm() throws FieldNotFound {
return get(new quickfix.field.DeliveryForm());
}
public boolean isSet(quickfix.field.DeliveryForm field) {
return isSetField(field);
}
public boolean isSetDeliveryForm() {
return isSetField(668);
}
public void set(quickfix.field.PctAtRisk value) {
setField(value);
}
public quickfix.field.PctAtRisk get(quickfix.field.PctAtRisk value) throws FieldNotFound {
getField(value);
return value;
}
public quickfix.field.PctAtRisk getPctAtRisk() throws FieldNotFound {
return get(new quickfix.field.PctAtRisk());
}
public boolean isSet(quickfix.field.PctAtRisk field) {
return isSetField(field);
}
public boolean isSetPctAtRisk() {
return isSetField(869);
}
public void set(quickfix.field.NoInstrAttrib value) {
setField(value);
}
public quickfix.field.NoInstrAttrib get(quickfix.field.NoInstrAttrib value) throws FieldNotFound {
getField(value);
return value;
}
public quickfix.field.NoInstrAttrib getNoInstrAttrib() throws FieldNotFound {
return get(new quickfix.field.NoInstrAttrib());
}
public boolean isSet(quickfix.field.NoInstrAttrib field) {
return isSetField(field);
}
public boolean isSetNoInstrAttrib() {
return isSetField(870);
}
public static class NoInstrAttrib extends Group {
static final long serialVersionUID = 20050617;
private static final int[] ORDER = {871, 872, 0};
public NoInstrAttrib() {
super(870, 871, ORDER);
}
public void set(quickfix.field.InstrAttribType value) {
setField(value);
}
public quickfix.field.InstrAttribType get(quickfix.field.InstrAttribType value) throws FieldNotFound {
getField(value);
return value;
}
public quickfix.field.InstrAttribType getInstrAttribType() throws FieldNotFound {
return get(new quickfix.field.InstrAttribType());
}
public boolean isSet(quickfix.field.InstrAttribType field) {
return isSetField(field);
}
public boolean isSetInstrAttribType() {
return isSetField(871);
}
public void set(quickfix.field.InstrAttribValue value) {
setField(value);
}
public quickfix.field.InstrAttribValue get(quickfix.field.InstrAttribValue value) throws FieldNotFound {
getField(value);
return value;
}
public quickfix.field.InstrAttribValue getInstrAttribValue() throws FieldNotFound {
return get(new quickfix.field.InstrAttribValue());
}
public boolean isSet(quickfix.field.InstrAttribValue field) {
return isSetField(field);
}
public boolean isSetInstrAttribValue() {
return isSetField(872);
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy