quickfix.fix50sp2.component.TrdCollGrp Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of quickfixj-messages-fix50sp2 Show documentation
Show all versions of quickfixj-messages-fix50sp2 Show documentation
QuickFIX/J Message classes for FIX 5.0 SP2
package quickfix.fix50sp2.component;
import quickfix.FieldNotFound;
import quickfix.Group;
public class TrdCollGrp extends quickfix.MessageComponent {
static final long serialVersionUID = 20050617;
public static final String MSGTYPE = "";
private int[] componentFields = { };
protected int[] getFields() { return componentFields; }
private int[] componentGroups = { 897, };
protected int[] getGroupFields() { return componentGroups; }
public TrdCollGrp() {
super();
}
public void set(quickfix.field.NoTrades value) {
setField(value);
}
public quickfix.field.NoTrades get(quickfix.field.NoTrades value) throws FieldNotFound {
getField(value);
return value;
}
public quickfix.field.NoTrades getNoTrades() throws FieldNotFound {
return get(new quickfix.field.NoTrades());
}
public boolean isSet(quickfix.field.NoTrades field) {
return isSetField(field);
}
public boolean isSetNoTrades() {
return isSetField(897);
}
public static class NoTrades extends Group {
static final long serialVersionUID = 20050617;
private static final int[] ORDER = {571, 818, 0};
public NoTrades() {
super(897, 571, ORDER);
}
public void set(quickfix.field.TradeReportID value) {
setField(value);
}
public quickfix.field.TradeReportID get(quickfix.field.TradeReportID value) throws FieldNotFound {
getField(value);
return value;
}
public quickfix.field.TradeReportID getTradeReportID() throws FieldNotFound {
return get(new quickfix.field.TradeReportID());
}
public boolean isSet(quickfix.field.TradeReportID field) {
return isSetField(field);
}
public boolean isSetTradeReportID() {
return isSetField(571);
}
public void set(quickfix.field.SecondaryTradeReportID value) {
setField(value);
}
public quickfix.field.SecondaryTradeReportID get(quickfix.field.SecondaryTradeReportID value) throws FieldNotFound {
getField(value);
return value;
}
public quickfix.field.SecondaryTradeReportID getSecondaryTradeReportID() throws FieldNotFound {
return get(new quickfix.field.SecondaryTradeReportID());
}
public boolean isSet(quickfix.field.SecondaryTradeReportID field) {
return isSetField(field);
}
public boolean isSetSecondaryTradeReportID() {
return isSetField(818);
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy