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