quickfix.fix50sp2.component.TrdCapDtGrp 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
package quickfix.fix50sp2.component;
import quickfix.FieldNotFound;
import quickfix.Group;
public class TrdCapDtGrp extends quickfix.MessageComponent {
static final long serialVersionUID = 20050617;
public static final String MSGTYPE = "";
private int[] componentFields = { };
protected int[] getFields() { return componentFields; }
private int[] componentGroups = { 580, };
protected int[] getGroupFields() { return componentGroups; }
public TrdCapDtGrp() {
super();
}
public void set(quickfix.field.NoDates value) {
setField(value);
}
public quickfix.field.NoDates get(quickfix.field.NoDates value) throws FieldNotFound {
getField(value);
return value;
}
public quickfix.field.NoDates getNoDates() throws FieldNotFound {
return get(new quickfix.field.NoDates());
}
public boolean isSet(quickfix.field.NoDates field) {
return isSetField(field);
}
public boolean isSetNoDates() {
return isSetField(580);
}
public static class NoDates extends Group {
static final long serialVersionUID = 20050617;
private static final int[] ORDER = {75, 779, 60, 0};
public NoDates() {
super(580, 75, ORDER);
}
public void set(quickfix.field.TradeDate value) {
setField(value);
}
public quickfix.field.TradeDate get(quickfix.field.TradeDate value) throws FieldNotFound {
getField(value);
return value;
}
public quickfix.field.TradeDate getTradeDate() throws FieldNotFound {
return get(new quickfix.field.TradeDate());
}
public boolean isSet(quickfix.field.TradeDate field) {
return isSetField(field);
}
public boolean isSetTradeDate() {
return isSetField(75);
}
public void set(quickfix.field.LastUpdateTime value) {
setField(value);
}
public quickfix.field.LastUpdateTime get(quickfix.field.LastUpdateTime value) throws FieldNotFound {
getField(value);
return value;
}
public quickfix.field.LastUpdateTime getLastUpdateTime() throws FieldNotFound {
return get(new quickfix.field.LastUpdateTime());
}
public boolean isSet(quickfix.field.LastUpdateTime field) {
return isSetField(field);
}
public boolean isSetLastUpdateTime() {
return isSetField(779);
}
public void set(quickfix.field.TransactTime value) {
setField(value);
}
public quickfix.field.TransactTime get(quickfix.field.TransactTime value) throws FieldNotFound {
getField(value);
return value;
}
public quickfix.field.TransactTime getTransactTime() throws FieldNotFound {
return get(new quickfix.field.TransactTime());
}
public boolean isSet(quickfix.field.TransactTime field) {
return isSetField(field);
}
public boolean isSetTransactTime() {
return isSetField(60);
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy