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