All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.orientechnologies.orient.core.db.record.ridbag.ORidBagDeleter Maven / Gradle / Ivy

There is a newer version: 3.2.32
Show newest version
package com.orientechnologies.orient.core.db.record.ridbag;

import com.orientechnologies.orient.core.record.impl.ODocument;

/** Created by tglman on 01/07/16. */
public final class ORidBagDeleter {

  public static void deleteAllRidBags(ODocument document) {
    for (Object value : document.fieldValues()) {
      if (value instanceof ORidBag) {
        ((ORidBag) value).delete();
      }
    }
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy