@MarshalsPointer
 public static CVImageBufferAttributes toObject(
     Class<CVImageBufferAttributes> cls, long handle, long flags) {
   CFDictionary o = (CFDictionary) CFType.Marshaler.toObject(CFDictionary.class, handle, flags);
   if (o == null) {
     return null;
   }
   return new CVImageBufferAttributes(o);
 }
 @MarshalsPointer
 public static List<CVImageBufferAttributes> toObject(
     Class<? extends CFType> cls, long handle, long flags) {
   CFArray o = (CFArray) CFType.Marshaler.toObject(cls, handle, flags);
   if (o == null) {
     return null;
   }
   List<CVImageBufferAttributes> list = new ArrayList<>();
   for (int i = 0; i < o.size(); i++) {
     list.add(new CVImageBufferAttributes(o.get(i, CFDictionary.class)));
   }
   return list;
 }