quickfix.fix50sp2.component.NstdPtys3SubGrp 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 NstdPtys3SubGrp extends quickfix.MessageComponent {
static final long serialVersionUID = 20050617;
public static final String MSGTYPE = "";
private int[] componentFields = { };
protected int[] getFields() { return componentFields; }
private int[] componentGroups = { 952, };
protected int[] getGroupFields() { return componentGroups; }
public NstdPtys3SubGrp() {
super();
}
public void set(quickfix.field.NoNested3PartySubIDs value) {
setField(value);
}
public quickfix.field.NoNested3PartySubIDs get(quickfix.field.NoNested3PartySubIDs value) throws FieldNotFound {
getField(value);
return value;
}
public quickfix.field.NoNested3PartySubIDs getNoNested3PartySubIDs() throws FieldNotFound {
return get(new quickfix.field.NoNested3PartySubIDs());
}
public boolean isSet(quickfix.field.NoNested3PartySubIDs field) {
return isSetField(field);
}
public boolean isSetNoNested3PartySubIDs() {
return isSetField(952);
}
public static class NoNested3PartySubIDs extends Group {
static final long serialVersionUID = 20050617;
private static final int[] ORDER = {953, 954, 0};
public NoNested3PartySubIDs() {
super(952, 953, ORDER);
}
public void set(quickfix.field.Nested3PartySubID value) {
setField(value);
}
public quickfix.field.Nested3PartySubID get(quickfix.field.Nested3PartySubID value) throws FieldNotFound {
getField(value);
return value;
}
public quickfix.field.Nested3PartySubID getNested3PartySubID() throws FieldNotFound {
return get(new quickfix.field.Nested3PartySubID());
}
public boolean isSet(quickfix.field.Nested3PartySubID field) {
return isSetField(field);
}
public boolean isSetNested3PartySubID() {
return isSetField(953);
}
public void set(quickfix.field.Nested3PartySubIDType value) {
setField(value);
}
public quickfix.field.Nested3PartySubIDType get(quickfix.field.Nested3PartySubIDType value) throws FieldNotFound {
getField(value);
return value;
}
public quickfix.field.Nested3PartySubIDType getNested3PartySubIDType() throws FieldNotFound {
return get(new quickfix.field.Nested3PartySubIDType());
}
public boolean isSet(quickfix.field.Nested3PartySubIDType field) {
return isSetField(field);
}
public boolean isSetNested3PartySubIDType() {
return isSetField(954);
}
}
}