
quickfix.fixLatest.component.CollateralAmountGrp Maven / Gradle / Ivy
package quickfix.fixLatest.component;
import quickfix.FieldNotFound;
import quickfix.Group;
public class CollateralAmountGrp extends quickfix.MessageComponent {
static final long serialVersionUID = 20050617;
public static final String MSGTYPE = "";
private int[] componentFields = { };
protected int[] getFields() { return componentFields; }
private int[] componentGroups = { 1703, };
protected int[] getGroupFields() { return componentGroups; }
public CollateralAmountGrp() {
super();
}
public void set(quickfix.field.NoCollateralAmounts value) {
setField(value);
}
public quickfix.field.NoCollateralAmounts get(quickfix.field.NoCollateralAmounts value) throws FieldNotFound {
getField(value);
return value;
}
public quickfix.field.NoCollateralAmounts getNoCollateralAmounts() throws FieldNotFound {
return get(new quickfix.field.NoCollateralAmounts());
}
public boolean isSet(quickfix.field.NoCollateralAmounts field) {
return isSetField(field);
}
public boolean isSetNoCollateralAmounts() {
return isSetField(1703);
}
public static class NoCollateralAmounts extends Group {
static final long serialVersionUID = 20050617;
private static final int[] ORDER = {1704, 1706, 0};
public NoCollateralAmounts() {
super(1703, 1704, ORDER);
}
public void set(quickfix.field.CurrentCollateralAmount value) {
setField(value);
}
public quickfix.field.CurrentCollateralAmount get(quickfix.field.CurrentCollateralAmount value) throws FieldNotFound {
getField(value);
return value;
}
public quickfix.field.CurrentCollateralAmount getCurrentCollateralAmount() throws FieldNotFound {
return get(new quickfix.field.CurrentCollateralAmount());
}
public boolean isSet(quickfix.field.CurrentCollateralAmount field) {
return isSetField(field);
}
public boolean isSetCurrentCollateralAmount() {
return isSetField(1704);
}
public void set(quickfix.field.CollateralType value) {
setField(value);
}
public quickfix.field.CollateralType get(quickfix.field.CollateralType value) throws FieldNotFound {
getField(value);
return value;
}
public quickfix.field.CollateralType getCollateralType() throws FieldNotFound {
return get(new quickfix.field.CollateralType());
}
public boolean isSet(quickfix.field.CollateralType field) {
return isSetField(field);
}
public boolean isSetCollateralType() {
return isSetField(1706);
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy