Exemple #1
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 #2
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 #3
0
 @MarshalsPointer
 public static long toNative(CVBufferAttribute o, long flags) {
   if (o == null) {
     return 0L;
   }
   return CFType.Marshaler.toNative(o.value(), flags);
 }
Exemple #4
0
 @MarshalsPointer
 public static CVBufferAttribute toObject(
     Class<CVBufferAttribute> cls, long handle, long flags) {
   CFString o = (CFString) CFType.Marshaler.toObject(CFString.class, handle, flags);
   if (o == null) {
     return null;
   }
   return CVBufferAttribute.valueOf(o);
 }
Exemple #5
0
 @MarshalsPointer
 public static List<CVBufferAttribute> 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<CVBufferAttribute> list = new ArrayList<>();
   for (int i = 0; i < o.size(); i++) {
     list.add(CVBufferAttribute.valueOf(o.get(i, CFString.class)));
   }
   return list;
 }
Exemple #6
0
 public CVBufferAttributes set(CVBufferAttribute key, NativeObject value) {
   data.put(key.value(), value);
   return this;
 }
Exemple #7
0
 public <T extends NativeObject> T get(CVBufferAttribute key, Class<T> type) {
   if (has(key)) {
     return data.get(key.value(), type);
   }
   return null;
 }
Exemple #8
0
 /*<methods>*/
 public boolean has(CVBufferAttribute key) {
   return data.containsKey(key.value());
 }