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