public <T extends NativeObject> T get(CVImageBufferAttribute key, Class<T> type) { if (has(key)) { return data.get(key.value(), type); } return null; }
public CVImageBufferAttributes set(CVImageBufferAttribute key, NativeObject value) { data.put(key.value(), value); return this; }
/*<methods>*/ public boolean has(CVImageBufferAttribute key) { return data.containsKey(key.value()); }