cimval=new CIMValue(uint32);
}
if(type==CIMDataType.UINT64){
Long shrt=new Long(Long.parseLong(CIMKeyValue.toString()));
BigInteger big=BigInteger.valueOf(shrt.longValue());
UnsignedInt64 uint64= new UnsignedInt64(big.abs());
cimval=new CIMValue(uint64);
}
if(type==CIMDataType.SINT8){
Byte byt=new Byte(Byte.parseByte(CIMKeyValue.toString()));
cimval=new CIMValue(byt);