Exemple #1
0
 @MarshalsPointer
 public static long toNative(CVBufferAttribute o, long flags) {
   if (o == null) {
     return 0L;
   }
   return CFType.Marshaler.toNative(o.value(), flags);
 }
Exemple #2
0
 @MarshalsPointer
 public static long toNative(List<CVBufferAttribute> l, long flags) {
   if (l == null) {
     return 0L;
   }
   CFArray array = CFMutableArray.create();
   for (CVBufferAttribute o : l) {
     array.add(o.value());
   }
   return CFType.Marshaler.toNative(array, flags);
 }
Exemple #3
0
 public static /*<name>*/ CVBufferAttribute /*</name>*/ valueOf(
     /*<type>*/ CFString /*</type>*/ value) {
   for (/*<name>*/ CVBufferAttribute /*</name>*/ v : values) {
     if (v.value().equals(value)) {
       return v;
     }
   }
   throw new IllegalArgumentException(
       "No constant with value "
           + value
           + " found in "
           + /*<name>*/ CVBufferAttribute /*</name>*/.class.getName());
 }
Exemple #4
0
 public CVBufferAttributes set(CVBufferAttribute key, NativeObject value) {
   data.put(key.value(), value);
   return this;
 }
Exemple #5
0
 public <T extends NativeObject> T get(CVBufferAttribute key, Class<T> type) {
   if (has(key)) {
     return data.get(key.value(), type);
   }
   return null;
 }
Exemple #6
0
 /*<methods>*/
 public boolean has(CVBufferAttribute key) {
   return data.containsKey(key.value());
 }