| CIMInstance ()
Constructs an uninitialized CIMInstance object.
|
| CIMInstance (const CIMInstance& x)
Constructs a CIMInstance object from the value of a specified CIMInstance object, so that both objects refer to the same data copy.
|
explicit | CIMInstance (const CIMObject& x)
Constructs a CIMInstance object from the value of a specified CIMObject object, so that both objects refer to the same data copy.
|
| CIMInstance (const CIMName& className)
Constructs a CIMInstance object with the specified class name.
|
CIMInstance& | operator= (const CIMInstance& x)
Assigns the value of the specified CIMInstance object to this object, so that both objects refer to the same data copy.
|
| ~CIMInstance ()
Destructs the CIMInstance object
|
const CIMName& | getClassName () const
Gets the class name of the instance.
|
const CIMObjectPath& | getPath () const
Gets the object path for the instance.
|
void | setPath (const CIMObjectPath & path)
Sets the object path for the instance.
|
CIMInstance& | addQualifier (const CIMQualifier& qualifier)
Adds a qualifier to the instance.
|
Uint32 | findQualifier (const CIMName& name) const
Finds a qualifier by name.
|
CIMQualifier | getQualifier (Uint32 index)
Gets the qualifier at the specified index.
|
CIMConstQualifier | getQualifier (Uint32 index) const
Gets the qualifier at the specified index.
|
void | removeQualifier (Uint32 index)
Removes a qualifier from the instance.
|
Uint32 | getQualifierCount () const
Gets the number of qualifiers in the instance.
|
CIMInstance& | addProperty (const CIMProperty& x)
Adds a property to the instance.
|
Uint32 | findProperty (const CIMName& name) const
Finds a property by name.
|
CIMProperty | getProperty (Uint32 index)
Gets the property at the specified index.
|
CIMConstProperty | getProperty (Uint32 index) const
Gets the property at the specified index.
|
void | removeProperty (Uint32 index)
Removes a property from the instance.
|
Uint32 | getPropertyCount () const
Gets the number of properties in the instance.
|
CIMObjectPath | buildPath (const CIMConstClass& cimClass) const
Builds the object path for this instance, based on the class name and property values in the instance and the Key qualifiers on the properties in the class definition.
|
CIMInstance | clone () const
Makes a deep copy of the instance.
|
Boolean | identical (const CIMConstInstance& x) const
Compares the CIMInstance with a specified CIMConstInstance.
|
Boolean | isUninitialized () const
Determines whether the object has been initialized.
|