@MarshalsPointer public static long toNative(AVMetadataFormat o, long flags) { if (o == null) { return 0L; } return NSObject.Marshaler.toNative(o.value(), flags); }
@MarshalsPointer public static long toNative(List<AVMetadataFormat> l, long flags) { if (l == null) { return 0L; } NSArray<NSString> array = new NSMutableArray<>(); for (AVMetadataFormat o : l) { array.add(o.value()); } return NSObject.Marshaler.toNative(array, flags); }
public static /*<name>*/ AVMetadataFormat /*</name>*/ valueOf( /*<type>*/ NSString /*</type>*/ value) { for (/*<name>*/ AVMetadataFormat /*</name>*/ v : values) { if (v.value().equals(value)) { return v; } } throw new IllegalArgumentException( "No constant with value " + value + " found in " + /*<name>*/ AVMetadataFormat /*</name>*/.class.getName()); }