@MarshalsPointer public static long toNative(List<CFURLUbiquitousItemDownloadingStatus> l, long flags) { if (l == null) { return 0L; } CFArray array = CFMutableArray.create(); for (CFURLUbiquitousItemDownloadingStatus o : l) { array.add(o.value()); } return CFType.Marshaler.toNative(array, flags); }
public static /*<name>*/ CFURLUbiquitousItemDownloadingStatus /*</name>*/ valueOf( /*<type>*/ CFString /*</type>*/ value) { for (/*<name>*/ CFURLUbiquitousItemDownloadingStatus /*</name>*/ v : values) { if (v.value().equals(value)) { return v; } } throw new IllegalArgumentException( "No constant with value " + value + " found in " + /*<name>*/ CFURLUbiquitousItemDownloadingStatus /*</name>*/.class.getName()); }
@MarshalsPointer public static long toNative(CFURLUbiquitousItemDownloadingStatus o, long flags) { if (o == null) { return 0L; } return CFType.Marshaler.toNative(o.value(), flags); }
@MarshalsPointer public static CFURLUbiquitousItemDownloadingStatus toObject( Class<CFURLUbiquitousItemDownloadingStatus> cls, long handle, long flags) { CFString o = (CFString) CFType.Marshaler.toObject(CFString.class, handle, flags); if (o == null) { return null; } return CFURLUbiquitousItemDownloadingStatus.valueOf(o); }
@MarshalsPointer public static List<CFURLUbiquitousItemDownloadingStatus> toObject( Class<? extends CFType> cls, long handle, long flags) { CFArray o = (CFArray) CFType.Marshaler.toObject(CFArray.class, handle, flags); if (o == null) { return null; } List<CFURLUbiquitousItemDownloadingStatus> list = new ArrayList<>(); for (int i = 0; i < o.size(); i++) { list.add(CFURLUbiquitousItemDownloadingStatus.valueOf(o.get(i, CFString.class))); } return list; }