com.refinitiv.ema.access.OmmUIntImpl Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ema Show documentation
Show all versions of ema Show documentation
Enterprise Message API (EMA) Java Edition
The 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 LSEG. All rights reserved.
///*|-----------------------------------------------------------------------------
package com.refinitiv.ema.access;
import java.math.BigInteger;
class OmmUIntImpl extends DataImpl implements OmmUInt
{
private com.refinitiv.eta.codec.UInt _rsslUInt = com.refinitiv.eta.codec.CodecFactory.createUInt();
@Override
public int dataType()
{
return DataType.DataTypes.UINT;
}
@Override
public long longValue()
{
return _rsslUInt.toLong();
}
@Override
public BigInteger bigIntegerValue()
{
return _rsslUInt.toBigInteger();
}
@Override
public String toString()
{
if (DataCode.BLANK == code())
return BLANK_STRING;
else
return _rsslUInt.toString();
}
@Override
int decode(com.refinitiv.eta.codec.Buffer rsslBuffer, com.refinitiv.eta.codec.DecodeIterator dIter)
{
_rsslBuffer = rsslBuffer;
if (com.refinitiv.eta.codec.CodecReturnCodes.SUCCESS == _rsslUInt.decode(dIter))
_dataCode = DataCode.NO_CODE;
else
{
_dataCode = DataCode.BLANK;
_rsslUInt.clear();
}
return com.refinitiv.eta.codec.CodecReturnCodes.SUCCESS;
}
}