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

com.thomsonreuters.ema.access.FieldList Maven / Gradle / Ivy

There is a newer version: 3.5.1.0
Show newest version
///*|-----------------------------------------------------------------------------
// *|            This source code is provided under the Apache 2.0 license      --
// *|  and is provided AS IS with no warranty or guarantee of fit for purpose.  --
// *|                See the project's LICENSE.md for details.                  --
// *|           Copyright (C) 2019 Refinitiv. All rights reserved.            --
///*|-----------------------------------------------------------------------------

package com.thomsonreuters.ema.access;

import java.util.Collection;

/**
 * FieldList is a heterogeneous container of complex and primitive data type
 * entries.
 * 

* The following code snippet shows addition of containers to FieldList. *
 * FieldList fieldList = EmaFactory.createFieldList();
 * fieldList.add(EmaFactory.createFieldEntry().real(22, 34, OmmReal.MagnitudeType.EXPONENT_POS_1));
 * fieldList.add(EmaFactory.createFieldEntry().time(18, 11, 29, 30));
 * 
* * The following code snippet shows extracting data from FieldList. *
 * for(MapEntry mEntry : map)
 * {
 *    if(mEntry.loadType() == DataTypes.FIELD_LIST)
 *    {
 *       FieldList fieldList = mEntry.fieldList();
 *       for(FieldEntry fieldEntry : fieldList)
 *       {
 *          switch(fieldEntry.loadType())
 *          {
 *             case DataTypes.INT :
 *                long value = fieldEntry.intValue();
 *                break;
 *             case DataTypes.REAL :
 *                double d = fieldEntry.real().asDouble();
 *                break;
 *
 *             ...
 *          }
 *       }
 *    }
 * }
 * 
* * Objects of this class are intended to be short lived or rather transitional.
* This class is designed to efficiently perform setting and extracting of FieldList and its content.
* Objects of this class are not cache-able. * * @see Data * @see FieldEntry * @see ReqMsg * @see RefreshMsg * @see UpdateMsg * @see StatusMsg * @see GenericMsg * @see PostMsg * @see AckMsg * @see ElementList * @see Map * @see Vector * @see Series * @see FilterList * @see OmmOpaque * @see OmmXml * @see OmmAnsiPage * @see OmmError */ public interface FieldList extends ComplexType, Collection { /** * Indicates presence of Info. * * @return true if FieldList Info is set; false otherwise */ public boolean hasInfo(); /** * Returns InfoFieldListNum. * * @throws OmmInvalidUsageException * if hasInfo() returns false * * @return FieldList Number */ public int infoFieldListNum(); /** * Returns InfoDictionaryId. * * @throws OmmInvalidUsageException * if hasInfo() returns false * * @return DictionaryId associated with this FieldList */ public int infoDictionaryId(); /** * Clears the FieldList.
* Invoking clear() method clears all the values and resets all the defaults */ public void clear(); /** * Specifies Info.
* The FieldList Info is optional. If used, it must be set prior to adding anything to FieldList. * * @param dictionaryId * dictionary id of the RdmFieldDictioanry associated with this * FieldList * @param fieldListNum * FieldList template number * @return reference to this object */ public FieldList info(int dictionaryId, int fieldListNum); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy