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