#include <it_bus/integer.h>
Inheritance diagram for IT_Bus::Integer:
This class stores the value as a Decimal value.
Definition at line 27 of file integer.h.
Public Member Functions | |
Integer () throw (()) | |
No argument constructor. | |
Integer (short value) throw (()) | |
Constructor. | |
Integer (unsigned short value) throw (()) | |
Constructor. | |
Integer (int value) throw (()) | |
Constructor. | |
Integer (unsigned int value) throw (()) | |
Constructor. | |
Integer (long value) throw (()) | |
Constructor. | |
Integer (unsigned long value) throw (()) | |
Constructor. | |
Integer (IT_LongLong value) throw (()) | |
Constructor. | |
Integer (IT_ULongLong value) throw (()) | |
Constructor. | |
Integer (const char *value, bool truncate=false) throw ((IT_Bus::Exception)) | |
Constructor. | |
Integer (const String &value, bool truncate=false) throw ((IT_Bus::Exception)) | |
Constructor. | |
Integer (const Decimal &value, bool truncate=false) throw ((IT_Bus::Exception)) | |
Constructor. | |
Integer (const Integer ©) throw (()) | |
Copy constructor. | |
Integer & | operator= (const Integer &rhs) throw (()) |
Assignment operator. | |
Integer & | operator+= (const Integer &rhs) throw ((IT_Bus::Exception)) |
Addition with a sign operator. | |
Integer & | operator-= (const Integer &rhs) throw ((IT_Bus::Exception)) |
Subtraction with a sign operator. | |
Integer & | operator *= (const Integer &rhs) throw ((IT_Bus::Exception)) |
Multiplication with a sign operator. | |
Integer & | operator/= (const Integer &rhs) throw ((IT_Bus::Exception)) |
Division with a sign operator. | |
Integer & | operator%= (const Integer &rhs) throw ((IT_Bus::Exception)) |
Modulo with a sign operator. | |
Integer & | operator++ () throw ((IT_Bus::Exception)) |
Incrementing operator. | |
const Integer | operator++ (int) throw ((IT_Bus::Exception)) |
Incrementing operator. | |
Integer & | operator-- () throw ((IT_Bus::Exception)) |
Decrementing operator. | |
const Integer | operator-- (int) throw ((IT_Bus::Exception)) |
Decrementing operator. | |
bool | is_negative () const throw (()) |
Determine whether instance value is < 0. | |
bool | is_positive () const throw (()) |
Determine whether instance value is > 0. | |
bool | is_non_negative () const throw (()) |
Determine whether instance value is >= to 0. | |
bool | is_non_positive () const throw (()) |
Determine whether instance value is <= to 0. | |
int | compare (const Integer &other) const throw (()) |
Compares the value of this instance to the value of the parameter. | |
const Decimal & | get_value () const throw (()) |
Return the value of this instance as a Decimal. | |
void | set_value (const Decimal &value, bool truncate=false) throw ((IT_Bus::Exception)) |
Set the value of this instance from a Decimal. | |
String | to_string () const throw (()) |
Returns a String representation of the value of this instance. | |
virtual AnyType & | copy (const AnyType ©) |
Returns a reference to an AnyType that is a copy of the AnyType parameter. | |
virtual AnyType::Kind | get_kind () const |
Returns the IT_Bus::AnyType::Kind for the type. | |
virtual const QName & | get_type () const |
Returns the IT_Bus::QName for the type. | |
virtual IT_Reflect::Reflection * | get_reflection () throw ((IT_Reflect::ReflectException)) |
Return an instance of the IT_Reflect::Reflection type that encapsulates this instance. | |
virtual const IT_Reflect::Reflection * | get_reflection () const throw ((IT_Reflect::ReflectException)) |
Return an instance of the IT_Reflect::Reflection type that encapsulates this instance. | |
virtual void | write_value (AnySimpleTypeWriter &writer) const throw ((IT_Bus::SerializationException)) |
Write the instance value. | |
virtual void | read_value (AnySimpleTypeReader &reader) throw ((IT_Bus::DeserializationException)) |
Read the value into the instance. | |
Static Public Member Functions | |
bool | is_valid_integer (const Decimal &value) throw (()) |
Determines whether the test value is a valid integer. | |
Protected Member Functions | |
virtual void | validate (const Decimal &value) const throw ((IT_Bus::Exception)) |
Checks whether the test value is a valid integer. | |
Static Protected Member Functions | |
Decimal | from_string (const char *value, bool truncate=false) throw ((IT_Bus::Exception)) |
Returns a Decimal initialized with the value provided as a string. | |
Decimal | from_signed (IT_LongLong value) throw (()) |
Returns a Decimal initialized with the value provided as a longlong. | |
Decimal | from_unsigned (IT_ULongLong value) throw (()) |
Returns a Decimal initialized with the value provided as a longlong. | |
void | validate_integer (const Decimal &value) throw ((IT_Bus::Exception)) |
Checks whether the test value is a valid integer. | |
Protected Attributes | |
Decimal | m_value |
Instance variable that holds the value for the instance. |
|
No argument constructor.
|
|
Constructor.
|
|
Constructor.
|
|
Constructor.
|
|
Constructor.
|
|
Constructor.
|
|
Constructor.
|
|
Constructor.
|
|
Constructor.
|
|
Constructor.
|
|
Constructor.
|
|
Constructor.
|
|
Copy constructor.
|
|
Compares the value of this instance to the value of the parameter.
|
|
Returns a reference to an AnyType that is a copy of the AnyType parameter. Derived classes override this method, providing an appropriate implementation. In this base class, this method is not supported; an exception is always thrown.
Reimplemented from IT_Bus::AnyType. Reimplemented in IT_Bus::NonPositiveInteger, IT_Bus::NegativeInteger, IT_Bus::NonNegativeInteger, and IT_Bus::PositiveInteger. |
|
Returns a Decimal initialized with the value provided as a longlong.
|
|
Returns a Decimal initialized with the value provided as a string.
|
|
Returns a Decimal initialized with the value provided as a longlong.
|
|
Returns the IT_Bus::AnyType::Kind for the type. Derived subclasses override this method and return the appropriate Kind.
Reimplemented from IT_Bus::AnySimpleType. |
|
Return an instance of the IT_Reflect::Reflection type that encapsulates this instance.
Reimplemented from IT_Bus::AnyType. Reimplemented in IT_Bus::NonPositiveInteger, IT_Bus::NegativeInteger, IT_Bus::NonNegativeInteger, and IT_Bus::PositiveInteger. |
|
Return an instance of the IT_Reflect::Reflection type that encapsulates this instance.
Reimplemented from IT_Bus::AnyType. Reimplemented in IT_Bus::NonPositiveInteger, IT_Bus::NegativeInteger, IT_Bus::NonNegativeInteger, and IT_Bus::PositiveInteger. |
|
Returns the IT_Bus::QName for the type. Derived subclasses implement this method and return their QName.
Implements IT_Bus::AnyType. Reimplemented in IT_Bus::NonPositiveInteger, IT_Bus::NegativeInteger, IT_Bus::NonNegativeInteger, and IT_Bus::PositiveInteger. |
|
Return the value of this instance as a Decimal.
|
|
Determine whether instance value is < 0.
|
|
Determine whether instance value is >= to 0.
|
|
Determine whether instance value is <= to 0.
|
|
Determine whether instance value is > 0.
|
|
Determines whether the test value is a valid integer.
|
|
Multiplication with a sign operator.
|
|
Modulo with a sign operator.
|
|
Incrementing operator.
|
|
Incrementing operator.
|
|
Addition with a sign operator.
|
|
Decrementing operator.
|
|
Decrementing operator.
|
|
Subtraction with a sign operator.
|
|
Division with a sign operator.
|
|
Assignment operator.
Reimplemented in IT_Bus::NonPositiveInteger, IT_Bus::NegativeInteger, IT_Bus::NonNegativeInteger, and IT_Bus::PositiveInteger. |
|
Read the value into the instance. Derived classes implement this method. Implements IT_Bus::AnySimpleType. |
|
Set the value of this instance from a Decimal.
The code confirms that the the first parameter is a valid integer before setting the value of this instance. |
|
Returns a String representation of the value of this instance.
|
|
Checks whether the test value is a valid integer. This method invokes the validate_integer() method.
Reimplemented in IT_Bus::NonPositiveInteger, IT_Bus::NegativeInteger, IT_Bus::NonNegativeInteger, and IT_Bus::PositiveInteger. |
|
Checks whether the test value is a valid integer.
|
|
Write the instance value. Derived classes implement this method. Implements IT_Bus::AnySimpleType. |
|
Instance variable that holds the value for the instance.
|