quickfix.fix44.component.Stipulations 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 Stipulations extends quickfix.MessageComponent {
static final long serialVersionUID = 20050617;
public static final String MSGTYPE = "";
private int[] componentFields = { };
protected int[] getFields() { return componentFields; }
private int[] componentGroups = { 232, };
protected int[] getGroupFields() { return componentGroups; }
public Stipulations() {
super();
}
public void set(quickfix.field.NoStipulations value) {
setField(value);
}
public quickfix.field.NoStipulations get(quickfix.field.NoStipulations value) throws FieldNotFound {
getField(value);
return value;
}
public quickfix.field.NoStipulations getNoStipulations() throws FieldNotFound {
return get(new quickfix.field.NoStipulations());
}
public boolean isSet(quickfix.field.NoStipulations field) {
return isSetField(field);
}
public boolean isSetNoStipulations() {
return isSetField(232);
}
public static class NoStipulations extends Group {
static final long serialVersionUID = 20050617;
private static final int[] ORDER = {233, 234, 0};
public NoStipulations() {
super(232, 233, ORDER);
}
public void set(quickfix.field.StipulationType value) {
setField(value);
}
public quickfix.field.StipulationType get(quickfix.field.StipulationType value) throws FieldNotFound {
getField(value);
return value;
}
public quickfix.field.StipulationType getStipulationType() throws FieldNotFound {
return get(new quickfix.field.StipulationType());
}
public boolean isSet(quickfix.field.StipulationType field) {
return isSetField(field);
}
public boolean isSetStipulationType() {
return isSetField(233);
}
public void set(quickfix.field.StipulationValue value) {
setField(value);
}
public quickfix.field.StipulationValue get(quickfix.field.StipulationValue value) throws FieldNotFound {
getField(value);
return value;
}
public quickfix.field.StipulationValue getStipulationValue() throws FieldNotFound {
return get(new quickfix.field.StipulationValue());
}
public boolean isSet(quickfix.field.StipulationValue field) {
return isSetField(field);
}
public boolean isSetStipulationValue() {
return isSetField(234);
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy