![JAR search and dependency download from the Maven repository](/logo.png)
quickfix.fix43.SequenceReset Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of quickfixj-core Show documentation
Show all versions of quickfixj-core Show documentation
QuickFixJ is one of such libraries we depend on and which was modified by Exactpro.
The newest version!
package quickfix.fix43;
public class SequenceReset extends Message {
static final long serialVersionUID = 20050617;
public static final String MSGTYPE = "4";
public SequenceReset() {
super();
getHeader().setField(new quickfix.field.MsgType(MSGTYPE));
}
public SequenceReset(quickfix.field.NewSeqNo newSeqNo) {
this();
setField(newSeqNo);
}
public void set(quickfix.field.GapFillFlag value) {
setField(value);
}
public quickfix.field.GapFillFlag get(quickfix.field.GapFillFlag value) throws quickfix.FieldNotFound {
getField(value);
return value;
}
public quickfix.field.GapFillFlag getGapFillFlag() throws quickfix.FieldNotFound {
return get(new quickfix.field.GapFillFlag());
}
public boolean isSet(quickfix.field.GapFillFlag field) {
return isSetField(field);
}
public boolean isSetGapFillFlag() {
return isSetField(123);
}
public void set(quickfix.field.NewSeqNo value) {
setField(value);
}
public quickfix.field.NewSeqNo get(quickfix.field.NewSeqNo value) throws quickfix.FieldNotFound {
getField(value);
return value;
}
public quickfix.field.NewSeqNo getNewSeqNo() throws quickfix.FieldNotFound {
return get(new quickfix.field.NewSeqNo());
}
public boolean isSet(quickfix.field.NewSeqNo field) {
return isSetField(field);
}
public boolean isSetNewSeqNo() {
return isSetField(36);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy