Uses of Class
org.sblim.wbem.cim.CIMDataType
-
Packages that use CIMDataType Package Description org.sblim.wbem.cim Representation of CIM data in Java.org.sblim.wbem.xml Internal implementation of XML processing -
-
Uses of CIMDataType in org.sblim.wbem.cim
Fields in org.sblim.wbem.cim declared as CIMDataType Modifier and Type Field Description static CIMDataType
CIMDataType. INVALID_DATATYPE
static CIMDataType
CIMDataType. NULL_DATATYPE
Methods in org.sblim.wbem.cim that return CIMDataType Modifier and Type Method Description static CIMDataType
CIMDataType. getDataType(java.lang.String typeStr, boolean isArray)
Returns the corresponding CIMDataType object for the specified string type.static CIMDataType
CIMDataType. getPredefinedType(int pType)
Return a predefined value for the CIMDataType.CIMDataType
CIMArgument. getType()
Gets the CIMDataType associated with this argument.CIMDataType
CIMMethod. getType()
Returns the data type of the method.CIMDataType
CIMParameter. getType()
Returns the CIM data type of this objectCIMDataType
CIMProperty. getType()
Returns the CIMDataType associated with this CIMProperty.CIMDataType
CIMQualifierType. getType()
Returns a CIMDataType associated to this CIMQualifierType.CIMDataType
CIMValue. getType()
Return the data type for this object.Methods in org.sblim.wbem.cim with parameters of type CIMDataType Modifier and Type Method Description static boolean
CIMDataType. isTypeCompatible(java.lang.Object pValue, CIMDataType pDataType)
Defermines if the specified data type is is compatible with the data type of the specified value.void
CIMArgument. setType(CIMDataType pType)
Specifies the CIMDataType for this CIMArgument.void
CIMMethod. setType(CIMDataType pType)
Sets the data type of the returned value for the method.void
CIMParameter. setType(CIMDataType pType)
Specifies the CIMDataType for this object.void
CIMProperty. setType(CIMDataType pType)
Sets the CIMDataType for this CIMProperty.void
CIMQualifierType. setType(CIMDataType pType)
Set the value type of this qualifierConstructors in org.sblim.wbem.cim with parameters of type CIMDataType Constructor Description CIMArgument(java.lang.String pName, CIMDataType pDataType)
CIMValue(java.lang.Object pValue, CIMDataType pDataType)
Construct an object of a cim value, using the specified data type.CIMValue(java.util.Vector pValue, CIMDataType pDataType)
Construct an object of cim value for a given vector, and the specified data type. -
Uses of CIMDataType in org.sblim.wbem.xml
Methods in org.sblim.wbem.xml with parameters of type CIMDataType Modifier and Type Method Description static java.lang.String
CIMXMLBuilderImpl. getOpTypeStr(CIMDataType type)
static java.lang.String
CIMXMLBuilderImpl. getTypeStr(CIMDataType type)
-