Searched refs:XMPUtils (Results 1 – 5 of 5) sorted by relevance
21 import com.adobe.xmp.XMPUtils;401 strValue = XMPUtils.convertFromBoolean(((Boolean) value).booleanValue()); in serializeNodeValue()405 strValue = XMPUtils.convertFromInteger(((Integer) value).intValue()); in serializeNodeValue()409 strValue = XMPUtils.convertFromLong(((Long) value).longValue()); in serializeNodeValue()413 strValue = XMPUtils.convertFromDouble(((Double) value).doubleValue()); in serializeNodeValue()417 strValue = XMPUtils.convertFromDate((XMPDateTime) value); in serializeNodeValue()422 strValue = XMPUtils.convertFromDate(dt); in serializeNodeValue()426 strValue = XMPUtils.encodeBase64((byte[]) value); in serializeNodeValue()
22 import com.adobe.xmp.XMPUtils;1392 value = new Boolean(XMPUtils.convertToBoolean(rawValue));1395 value = new Integer(XMPUtils.convertToInteger(rawValue));1398 value = new Long(XMPUtils.convertToLong(rawValue));1401 value = new Double(XMPUtils.convertToDouble(rawValue));1404 value = XMPUtils.convertToDate(rawValue);1407 XMPDateTime dt = XMPUtils.convertToDate(rawValue);1411 value = XMPUtils.decodeBase64(rawValue);
23 import com.adobe.xmp.XMPUtils;459 binGPSStamp = XMPUtils.convertToDate(gpsDateTime.getValue()); in fixGPSTimeStamp()474 binOtherDate = XMPUtils.convertToDate(otherDate.getValue()); in fixGPSTimeStamp()480 gpsDateTime.setValue(XMPUtils.convertFromDate (binGPSStamp)); in fixGPSTimeStamp()
21 import com.adobe.xmp.XMPUtils;
24 public class XMPUtils class27 private XMPUtils() in XMPUtils() method in XMPUtils