@MarshalsPointer public static long toNative(CVBufferAttribute o, long flags) { if (o == null) { return 0L; } return CFType.Marshaler.toNative(o.value(), flags); }
@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); }
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()); }
public CVBufferAttributes set(CVBufferAttribute key, NativeObject value) { data.put(key.value(), value); return this; }
public <T extends NativeObject> T get(CVBufferAttribute key, Class<T> type) { if (has(key)) { return data.get(key.value(), type); } return null; }
/*<methods>*/ public boolean has(CVBufferAttribute key) { return data.containsKey(key.value()); }