quickfix.fix50sp2.component.NstdPtysSubGrp 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
The newest version!
package quickfix.fix50sp2.component;
import quickfix.FieldNotFound;
import quickfix.Group;
public class NstdPtysSubGrp extends quickfix.MessageComponent {
static final long serialVersionUID = 20050617;
public static final String MSGTYPE = "";
private int[] componentFields = { };
protected int[] getFields() { return componentFields; }
private int[] componentGroups = { 804, };
protected int[] getGroupFields() { return componentGroups; }
public NstdPtysSubGrp() {
super();
}
public void set(quickfix.field.NoNestedPartySubIDs value) {
setField(value);
}
public quickfix.field.NoNestedPartySubIDs get(quickfix.field.NoNestedPartySubIDs value) throws FieldNotFound {
getField(value);
return value;
}
public quickfix.field.NoNestedPartySubIDs getNoNestedPartySubIDs() throws FieldNotFound {
return get(new quickfix.field.NoNestedPartySubIDs());
}
public boolean isSet(quickfix.field.NoNestedPartySubIDs field) {
return isSetField(field);
}
public boolean isSetNoNestedPartySubIDs() {
return isSetField(804);
}
public static class NoNestedPartySubIDs extends Group {
static final long serialVersionUID = 20050617;
private static final int[] ORDER = {545, 805, 0};
public NoNestedPartySubIDs() {
super(804, 545, ORDER);
}
public void set(quickfix.field.NestedPartySubID value) {
setField(value);
}
public quickfix.field.NestedPartySubID get(quickfix.field.NestedPartySubID value) throws FieldNotFound {
getField(value);
return value;
}
public quickfix.field.NestedPartySubID getNestedPartySubID() throws FieldNotFound {
return get(new quickfix.field.NestedPartySubID());
}
public boolean isSet(quickfix.field.NestedPartySubID field) {
return isSetField(field);
}
public boolean isSetNestedPartySubID() {
return isSetField(545);
}
public void set(quickfix.field.NestedPartySubIDType value) {
setField(value);
}
public quickfix.field.NestedPartySubIDType get(quickfix.field.NestedPartySubIDType value) throws FieldNotFound {
getField(value);
return value;
}
public quickfix.field.NestedPartySubIDType getNestedPartySubIDType() throws FieldNotFound {
return get(new quickfix.field.NestedPartySubIDType());
}
public boolean isSet(quickfix.field.NestedPartySubIDType field) {
return isSetField(field);
}
public boolean isSetNestedPartySubIDType() {
return isSetField(805);
}
}
}