quickfix.fix44.component.LegStipulations 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 LegStipulations extends quickfix.MessageComponent {
static final long serialVersionUID = 20050617;
public static final String MSGTYPE = "";
private int[] componentFields = { };
protected int[] getFields() { return componentFields; }
private int[] componentGroups = { 683, };
protected int[] getGroupFields() { return componentGroups; }
public LegStipulations() {
super();
}
public void set(quickfix.field.NoLegStipulations value) {
setField(value);
}
public quickfix.field.NoLegStipulations get(quickfix.field.NoLegStipulations value) throws FieldNotFound {
getField(value);
return value;
}
public quickfix.field.NoLegStipulations getNoLegStipulations() throws FieldNotFound {
return get(new quickfix.field.NoLegStipulations());
}
public boolean isSet(quickfix.field.NoLegStipulations field) {
return isSetField(field);
}
public boolean isSetNoLegStipulations() {
return isSetField(683);
}
public static class NoLegStipulations extends Group {
static final long serialVersionUID = 20050617;
private static final int[] ORDER = {688, 689, 0};
public NoLegStipulations() {
super(683, 688, ORDER);
}
public void set(quickfix.field.LegStipulationType value) {
setField(value);
}
public quickfix.field.LegStipulationType get(quickfix.field.LegStipulationType value) throws FieldNotFound {
getField(value);
return value;
}
public quickfix.field.LegStipulationType getLegStipulationType() throws FieldNotFound {
return get(new quickfix.field.LegStipulationType());
}
public boolean isSet(quickfix.field.LegStipulationType field) {
return isSetField(field);
}
public boolean isSetLegStipulationType() {
return isSetField(688);
}
public void set(quickfix.field.LegStipulationValue value) {
setField(value);
}
public quickfix.field.LegStipulationValue get(quickfix.field.LegStipulationValue value) throws FieldNotFound {
getField(value);
return value;
}
public quickfix.field.LegStipulationValue getLegStipulationValue() throws FieldNotFound {
return get(new quickfix.field.LegStipulationValue());
}
public boolean isSet(quickfix.field.LegStipulationValue field) {
return isSetField(field);
}
public boolean isSetLegStipulationValue() {
return isSetField(689);
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy