Uses of Class
javax.cim.CIMDataType
-
Packages that use CIMDataType Package Description javax.cim Provides classes and interfaces for handling the CIM (Common Information Model) Object Model and CIM Data Types as defined in the CIM Infrastructure Specification.org.sblim.cimclient.internal.cim Internal helper classes for the CIM data classes.org.sblim.cimclient.internal.cimxml Internal cim-xml DOM parser & builder implementation.org.sblim.cimclient.internal.cimxml.sax Internal implementation of the SAX parser for cim-xml.org.sblim.cimclient.internal.cimxml.sax.node Internal implementation of the SAX parser for cim-xml.org.sblim.cimclient.internal.util Internal utility classes, such as constants, defaults, configuration and others. -
-
Uses of CIMDataType in javax.cim
Fields in javax.cim declared as CIMDataType Modifier and Type Field Description static CIMDataType
CIMDataType. BOOLEAN_ARRAY_T
Boolean unbounded array data typestatic CIMDataType
CIMDataType. BOOLEAN_T
Boolean data typestatic CIMDataType
CIMDataType. CHAR16_ARRAY_T
16-bit UCS-2 character unbounded Array typestatic CIMDataType
CIMDataType. CHAR16_T
16-bit UCS-2 character data typestatic CIMDataType
CIMDataType. CLASS_ARRAY_T
CIMClass unbounded Array typestatic CIMDataType
CIMDataType. CLASS_T
CIMClass typestatic CIMDataType
CIMDataType. DATETIME_ARRAY_T
A date-time unbounded array data typestatic CIMDataType
CIMDataType. DATETIME_T
A date-time data typestatic CIMDataType
CIMDataType. INVALID_T
Invalid data typestatic CIMDataType
CIMDataType. OBJECT_ARRAY_T
CIMInstance unbounded Array typestatic CIMDataType
CIMDataType. OBJECT_T
CIMInstance type data type (Note: For CIMV2, this can only be used when the property has either an EmbeddedInstance or EmbeddedObject qualifier)static CIMDataType
CIMDataType. REAL32_ARRAY_T
IEEE 4-byte floating-point unbounded array data typestatic CIMDataType
CIMDataType. REAL32_T
IEEE 4-byte floating-point data typestatic CIMDataType
CIMDataType. REAL64_ARRAY_T
IEEE 8-byte floating-point unbounded array data typestatic CIMDataType
CIMDataType. REAL64_T
IEEE 8-byte floating-point data typestatic CIMDataType
CIMDataType. SINT16_ARRAY_T
Signed 16-bit integer unbounded array data typestatic CIMDataType
CIMDataType. SINT16_T
Signed 16-bit integer data typestatic CIMDataType
CIMDataType. SINT32_ARRAY_T
Signed 32-bit integer unbounded array data typestatic CIMDataType
CIMDataType. SINT32_T
Signed 32-bit integer data typestatic CIMDataType
CIMDataType. SINT64_ARRAY_T
Signed 64-bit integer unbounded array data typestatic CIMDataType
CIMDataType. SINT64_T
Signed 64-bit integer data typestatic CIMDataType
CIMDataType. SINT8_ARRAY_T
Signed 8-bit integer unbounded array data typestatic CIMDataType
CIMDataType. SINT8_T
Signed 8-bit integer data typestatic CIMDataType
CIMDataType. STRING_ARRAY_T
UCS-2 string unbounded array data typestatic CIMDataType
CIMDataType. STRING_T
UCS-2 string data typestatic CIMDataType
CIMDataType. UINT16_ARRAY_T
Unsigned 16-bit integer unbounded array data typestatic CIMDataType
CIMDataType. UINT16_T
Unsigned 16-bit integer data typestatic CIMDataType
CIMDataType. UINT32_ARRAY_T
Unsigned 32-bit integer unbounded array data typestatic CIMDataType
CIMDataType. UINT32_T
Unsigned 32-bit integer data typestatic CIMDataType
CIMDataType. UINT64_ARRAY_T
Unsigned 64-bit integer unbounded array data typestatic CIMDataType
CIMDataType. UINT64_T
Unsigned 64-bit integer data typestatic CIMDataType
CIMDataType. UINT8_ARRAY_T
Unsigned 8-bit integer unbounded array data typestatic CIMDataType
CIMDataType. UINT8_T
Unsigned 8-bit integer data typeMethods in javax.cim that return CIMDataType Modifier and Type Method Description static CIMDataType
CIMDataType. getDataType(java.lang.Object pObj)
Get the data type of an object.CIMDataType
CIMTypedElement. getDataType()
Returns theCIMDataType
for this CIM Element.Constructors in javax.cim with parameters of type CIMDataType Constructor Description CIMArgument(java.lang.String pName, CIMDataType pType, E pValue)
Constructs aCIMArgument
to be used for method invocations.CIMClassProperty(java.lang.String pName, CIMDataType pType, E pValue, CIMQualifier<?>[] pQualifiers, boolean pKey, boolean pPropagated, java.lang.String pOriginClass)
This method constructs an instance ofCIMClassProperty
.CIMMethod(java.lang.String pName, CIMDataType pType, CIMQualifier<?>[] pQualis, CIMParameter<?>[] pParams, boolean pPropagated, java.lang.String pOriginClass)
Constructs aCIMMethod
object with the specified information.CIMParameter(java.lang.String pName, CIMDataType pType, CIMQualifier<?>[] pQualifiers)
Constructs aCIMParameter
object using the specified name, data type and qualifiers.CIMProperty(java.lang.String pName, CIMDataType pType, E pValue)
Constructs aCIMProperty
to be used in instances.CIMProperty(java.lang.String pName, CIMDataType pType, E pValue, boolean pKey, boolean pPropagated, java.lang.String pOriginClass)
Constructs aCIMProperty
to be used in instances.CIMQualifier(java.lang.String pName, CIMDataType pType, E pValue, int pFlavor)
Constructs a CIM qualifier with the specified name, type, value, and flavors.CIMQualifier(java.lang.String pName, CIMDataType pType, E pValue, int pFlavor, boolean pIsPropagated)
Constructs a CIM qualifier with the specified name, type, value, and flavors.CIMQualifierType(CIMObjectPath pPath, CIMDataType pType, E pValue, int pScope, int pFlavor)
Constructs a new CIM qualifier type, using the name, type of the specified CIM qualifier type.CIMTypedElement(java.lang.String pName, CIMDataType pType)
Constructs aCIMTypedElement
with the given name and data type.CIMValuedElement(java.lang.String pName, CIMDataType pType, E pValue)
Creates a new CIM element with the given name, type and value. -
Uses of CIMDataType in org.sblim.cimclient.internal.cim
Methods in org.sblim.cimclient.internal.cim that return CIMDataType Modifier and Type Method Description static CIMDataType
CIMHelper. ScalarDataType(int pType)
Returns the CIMDataType of a scalar of the specified data type.static CIMDataType
CIMHelper. UnboundedArrayDataType(int pType)
Returns the CIMDataType of an unbounded array of the specified data type. -
Uses of CIMDataType in org.sblim.cimclient.internal.cimxml
Methods in org.sblim.cimclient.internal.cimxml that return CIMDataType Modifier and Type Method Description CIMDataType
TypedValue. getType()
getTypestatic CIMDataType
CIMXMLParserImpl. parseArrayTypeStr(java.lang.String pTypeStr)
parseArrayTypeStrstatic CIMDataType
CIMXMLParserImpl. parseScalarTypeStr(java.lang.String pTypeStr)
parseScalarTypeStrstatic CIMDataType
CIMXMLParserImpl. parseTypeStr(java.lang.String pTypeStr, boolean pArray)
parseTypeStrMethods in org.sblim.cimclient.internal.cimxml with parameters of type CIMDataType Modifier and Type Method Description static java.lang.String
CIMXMLBuilderImpl. getEmbObjTypeStr(CIMDataType pType)
getEmbObjTypeStrstatic java.lang.String
CIMXMLBuilderImpl. getOpTypeStr(CIMDataType pType)
getOpTypeStrstatic java.lang.String
CIMXMLBuilderImpl. getTypeStr(CIMDataType pType)
getTypeStrstatic boolean
CIMXMLBuilderImpl. isCIMObject(CIMDataType pType)
isCIMObjectConstructors in org.sblim.cimclient.internal.cimxml with parameters of type CIMDataType Constructor Description TypedValue(CIMDataType pType, java.lang.Object pValue)
Ctor. -
Uses of CIMDataType in org.sblim.cimclient.internal.cimxml.sax
Methods in org.sblim.cimclient.internal.cimxml.sax that return CIMDataType Modifier and Type Method Description CIMDataType
EmbObjHandler. getArrayType()
getArrayType useful e.g.static CIMDataType
CIMObjectFactory. getCIMObjArrayType(java.lang.Object pObj)
getCIMObjArrayTypestatic CIMDataType
CIMObjectFactory. getCIMObjArrayType(java.lang.Object pObj, boolean pNullToString)
getArrayCIMObjTypestatic CIMDataType
CIMObjectFactory. getCIMObjScalarType(java.lang.Object pObj)
getCIMObjTypestatic CIMDataType
CIMObjectFactory. getCIMObjScalarType(java.lang.Object pObj, boolean pNullToString)
getCIMObjTypeCIMDataType
EmbObjHandler. getRawType()
getRawTypestatic CIMDataType
CIMObjectFactory. getType(java.lang.String pTypeStr)
getTypeCIMDataType
EmbObjHandler. getType()
getTypeMethods in org.sblim.cimclient.internal.cimxml.sax with parameters of type CIMDataType Modifier and Type Method Description static java.lang.Object
CIMObjectFactory. getEmbeddedObj(CIMDataType pType, java.lang.Object pValObj, SAXSession pSession)
getEmbeddedObjstatic java.lang.Object
CIMObjectFactory. getEmbeddedObj(CIMDataType pType, java.lang.String pValueStr, SAXSession pSession)
getEmbeddedObjectstatic java.lang.Object[]
CIMObjectFactory. getEmbeddedObjA(CIMDataType pType, java.lang.String[] pValueStrA, SAXSession pSession)
getEmbeddedObjectAstatic java.lang.Object[]
CIMObjectFactory. getEmbeddedObjA(CIMDataType pType, ValueArrayNode pValueArrayNode, SAXSession pSession)
getEmbbeddedObjectAstatic java.lang.Object
CIMObjectFactory. getObject(CIMDataType pType, java.lang.String pValueStr)
getObjectstatic java.lang.Object
CIMObjectFactory. getObject(CIMDataType pType, ValueArrayNode pValueArrayNode)
getObjectstatic java.lang.Object
CIMObjectFactory. getObject(CIMDataType pType, ValueNode pValueNode)
getObjectstatic java.lang.Object[]
CIMObjectFactory. getObjectArray(CIMDataType pType, java.util.ArrayList<java.lang.Object> pAL)
-
Uses of CIMDataType in org.sblim.cimclient.internal.cimxml.sax.node
Methods in org.sblim.cimclient.internal.cimxml.sax.node that return CIMDataType Modifier and Type Method Description static CIMDataType
Node. getCIMType(org.xml.sax.Attributes pAttribs)
getCIMType(pAttribs, pOptional=false);static CIMDataType
Node. getCIMType(org.xml.sax.Attributes pAttribs, boolean pOptional)
ENTITY % CIMType "TYPE (boolean|string|char16|uint8|sint8|uint16|sint16|uint32 |sint32|uint64|sint64|datetime|real32|real64)" getCIMTypestatic CIMDataType
Node. getParamType(org.xml.sax.Attributes pAttribs)
ENTITY % ParamType "PARAMTYPE ( boolean|string|char16|uint8|sint8|uint16|sint16 |uint32|sint32|uint64|sint64|datetime| real32|real64|reference)CIMDataType
CorrelatorNode. getType()
CIMDataType
IParamValueNode. getType()
CIMDataType
KeyValueNode. getType()
CIMDataType
ParameterArrayNode. getType()
CIMDataType
ParameterNode. getType()
CIMDataType
ParameterRefArrayNode. getType()
CIMDataType
ParameterReferenceNode. getType()
CIMDataType
ParamValueNode. getType()
CIMDataType
PropertyArrayNode. getType()
CIMDataType
PropertyNode. getType()
CIMDataType
PropertyReferenceNode. getType()
CIMDataType
QualiDeclNode. getType()
CIMDataType
ReturnValueNode. getType()
CIMDataType
TypedIf. getType()
getTypeCIMDataType
ValueArrayNode. getType()
CIMDataType
ValueInstanceWithPathNode. getType()
CIMDataType
ValueNamedInstanceNode. getType()
CIMDataType
ValueNode. getType()
CIMDataType
ValueNullNode. getType()
CIMDataType
ValueObjectNode. getType()
CIMDataType
ValueObjectWithLocalPathNode. getType()
CIMDataType
ValueObjectWithPathNode. getType()
CIMDataType
ValueRefArrayNode. getType()
CIMDataType
ValueReferenceNode. getType()
-
Uses of CIMDataType in org.sblim.cimclient.internal.util
Methods in org.sblim.cimclient.internal.util with parameters of type CIMDataType Modifier and Type Method Description static java.lang.String
MOF. dataType(CIMDataType pType)
dataType = DT_UINT8 | DT_SINT8 | DT_UINT16 | DT_SINT16 | DT_UINT32 | DT_SINT32 | DT_UINT64 | DT_SINT64 | DT_REAL32 | DT_REAL64 | DT_CHAR16 | DT_STR | DT_BOOL | DT_DATETIME
-