All Downloads are FREE. Search and download functionalities are using the official Maven repository.

quickfix.fix50sp1.component.TrdCapDtGrp Maven / Gradle / Ivy


package quickfix.fix50sp1.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 = {  };
	@Override
	protected int[] getFields() { return componentFields; }
	private int[] componentGroups = { 580,  };
	@Override
	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