Public Member Functions | List of all members
FIX::UtcTimeOnlyField Class Reference

Field that contains a UTC time value. More...

#include <Field.h>

Inheritance diagram for FIX::UtcTimeOnlyField:
Inheritance graph
[legend]
Collaboration diagram for FIX::UtcTimeOnlyField:
Collaboration graph
[legend]

Public Member Functions

 UtcTimeOnlyField (int field, const UtcTimeOnly &data, int precision=0)
 
 UtcTimeOnlyField (int field, int precision=0)
 
void setValue (const UtcTimeOnly &value)
 
UtcTimeOnly getValue () const throw ( IncorrectDataFormat )
 
 operator UtcTimeOnly () const
 
bool operator< (const UtcTimeOnlyField &rhs) const
 
bool operator== (const UtcTimeOnlyField &rhs) const
 
bool operator!= (const UtcTimeOnlyField &rhs) const
 
- Public Member Functions inherited from FIX::FieldBase
 FieldBase (int tag, const std::string &string)
 
virtual ~FieldBase ()
 
 FieldBase (const FieldBase &rhs)
 
FieldBaseoperator= (const FieldBase &rhs)
 
void swap (FieldBase &rhs)
 
void setTag (int tag)
 
void setField (int field)
 
void setString (const std::string &string)
 
int getTag () const
 Get the fields integer tag.
 
int getField () const
 
const std::string & getString () const
 Get the string representation of the fields value.
 
const std::string & getFixString () const
 Get the string representation of the Field (i.e.) 55=MSFT[SOH].
 
size_t getLength () const
 Get the length of the fields string representation.
 
int getTotal () const
 Get the total value the fields characters added together.
 
bool operator< (const FieldBase &field) const
 Compares fields based on their tag numbers.
 

Detailed Description

Field that contains a UTC time value.

Definition at line 497 of file Field.h.

Constructor & Destructor Documentation

◆ UtcTimeOnlyField() [1/2]

FIX::UtcTimeOnlyField::UtcTimeOnlyField ( int  field,
const UtcTimeOnly data,
int  precision = 0 
)
inlineexplicit

Definition at line 500 of file Field.h.

501: FieldBase( field, UtcTimeOnlyConvertor::convert( data, precision ) ) {}
FieldBase(int tag, std::string::const_iterator valueStart, std::string::const_iterator valueEnd, std::string::const_iterator tagStart, std::string::const_iterator tagEnd)
Constructor which also calculates field metrics.
Definition Field.h:80
static std::string convert(const UtcTimeOnly &value, int precision=0)

◆ UtcTimeOnlyField() [2/2]

FIX::UtcTimeOnlyField::UtcTimeOnlyField ( int  field,
int  precision = 0 
)
inline

Definition at line 502 of file Field.h.

503: FieldBase( field, UtcTimeOnlyConvertor::convert( UtcTimeOnly(), precision ) ) {}

Member Function Documentation

◆ getValue()

UtcTimeOnly FIX::UtcTimeOnlyField::getValue ( ) const
throw (IncorrectDataFormat
)
inline

Definition at line 507 of file Field.h.

508 { try
510 catch( FieldConvertError& )
511 { throw IncorrectDataFormat( getTag(), getString() ); } }
const std::string & getString() const
Get the string representation of the fields value.
Definition Field.h:152
int getTag() const
Get the fields integer tag.
Definition Field.h:144

References FIX::UtcTimeOnlyConvertor::convert(), FIX::FieldBase::getString(), and FIX::FieldBase::getTag().

Referenced by operator UtcTimeOnly(), operator!=(), operator<(), and operator==().

◆ operator UtcTimeOnly()

FIX::UtcTimeOnlyField::operator UtcTimeOnly ( ) const
inline

Definition at line 512 of file Field.h.

513 { return getValue(); }
UtcTimeOnly getValue() const
Definition Field.h:507

References getValue().

◆ operator!=()

bool FIX::UtcTimeOnlyField::operator!= ( const UtcTimeOnlyField rhs) const
inline

Definition at line 519 of file Field.h.

520 { return getValue() != rhs.getValue(); }

References getValue().

◆ operator<()

bool FIX::UtcTimeOnlyField::operator< ( const UtcTimeOnlyField rhs) const
inline

Definition at line 515 of file Field.h.

516 { return getValue() < rhs.getValue(); }

References getValue().

◆ operator==()

bool FIX::UtcTimeOnlyField::operator== ( const UtcTimeOnlyField rhs) const
inline

Definition at line 517 of file Field.h.

518 { return getValue() == rhs.getValue(); }

References getValue().

◆ setValue()

void FIX::UtcTimeOnlyField::setValue ( const UtcTimeOnly value)
inline

Definition at line 505 of file Field.h.

void setString(const std::string &string)
Definition Field.h:136

References FIX::UtcTimeOnlyConvertor::convert(), and FIX::FieldBase::setString().


The documentation for this class was generated from the following file:

Generated on Fri Sep 27 2024 13:45:21 for QuickFIX by doxygen 1.9.8 written by Dimitri van Heesch, © 1997-2001