#include <it_bus/integer.h>
Inheritance diagram for IT_Bus::NegativeInteger:
This class stores the value as a Decimal value.
Definition at line 732 of file integer.h.
Public Member Functions | |
NegativeInteger () throw (()) | |
No argument constructor. | |
NegativeInteger (short value) throw ((IT_Bus::Exception)) | |
Constructor. | |
NegativeInteger (int value) throw ((IT_Bus::Exception)) | |
Constructor. | |
NegativeInteger (long value) throw ((IT_Bus::Exception)) | |
Constructor. | |
NegativeInteger (IT_LongLong value) throw ((IT_Bus::Exception)) | |
Constructor. | |
NegativeInteger (const char *value, bool truncate=false) throw ((IT_Bus::Exception)) | |
Constructor. | |
NegativeInteger (const String &value, bool truncate=false) throw ((IT_Bus::Exception)) | |
Constructor. | |
NegativeInteger (const Decimal &value, bool truncate=false) throw ((IT_Bus::Exception)) | |
Constructor. | |
NegativeInteger (const Integer ©) throw ((IT_Bus::Exception)) | |
Constructor. | |
NegativeInteger (const NegativeInteger ©) throw (()) | |
Copy constructor. | |
NegativeInteger & | operator= (short value) throw ((IT_Bus::Exception)) |
Assignment operator from unsigned short. | |
NegativeInteger & | operator= (int value) throw ((IT_Bus::Exception)) |
Assignment operator from unsigned int. | |
NegativeInteger & | operator= (long value) throw ((IT_Bus::Exception)) |
Assignment operator from unsigned long. | |
NegativeInteger & | operator= (IT_LongLong value) throw ((IT_Bus::Exception)) |
Assignment operator from unsigned longlong. | |
NegativeInteger & | operator= (const Integer &rhs) throw ((IT_Bus::Exception)) |
Assignment operator from unsigned Integer. | |
NegativeInteger & | operator= (const NegativeInteger &rhs) throw (()) |
Assignment operator from unsigned NegativeInteger. | |
virtual AnyType & | copy (const AnyType ©) |
Returns a reference to an AnyType that is a copy of the AnyType parameter. | |
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. | |
Static Public Member Functions | |
bool | is_valid_negative_integer (const Decimal &value) throw (()) |
Checks whether the test value is a valid negative integer. | |
Protected Member Functions | |
virtual void | validate (const Decimal &value) const throw ((IT_Bus::Exception)) |
Checks whether the test value is a valid negative integer. | |
Static Protected Member Functions | |
void | validate_negative_integer (const Decimal &value) throw ((IT_Bus::Exception)) |
Checks whether the test value is a valid negative integer. |
|
No argument constructor.
|
|
Constructor.
|
|
Constructor.
|
|
Constructor.
|
|
Constructor.
|
|
Constructor.
|
|
Constructor.
|
|
Constructor.
|
|
Constructor.
|
|
Copy constructor.
|
|
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::NonPositiveInteger. |
|
Return an instance of the IT_Reflect::Reflection type that encapsulates this instance.
Reimplemented from IT_Bus::NonPositiveInteger. |
|
Return an instance of the IT_Reflect::Reflection type that encapsulates this instance.
Reimplemented from IT_Bus::NonPositiveInteger. |
|
Returns the IT_Bus::QName for the type. Derived subclasses implement this method and return their QName.
Reimplemented from IT_Bus::NonPositiveInteger. |
|
Checks whether the test value is a valid negative integer.
|
|
Assignment operator from unsigned NegativeInteger.
|
|
Assignment operator from unsigned Integer.
Reimplemented from IT_Bus::NonPositiveInteger. |
|
Assignment operator from unsigned longlong.
Reimplemented from IT_Bus::NonPositiveInteger. |
|
Assignment operator from unsigned long.
Reimplemented from IT_Bus::NonPositiveInteger. |
|
Assignment operator from unsigned int.
Reimplemented from IT_Bus::NonPositiveInteger. |
|
Assignment operator from unsigned short.
Reimplemented from IT_Bus::NonPositiveInteger. |
|
Checks whether the test value is a valid negative integer. This method invokes the validate_negative_integer() method.
Reimplemented from IT_Bus::NonPositiveInteger. |
|
Checks whether the test value is a valid negative integer.
|