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

org.molgenis.data.WritableFactory Maven / Gradle / Ivy

There is a newer version: 8.4.5
Show newest version
package org.molgenis.data;

import java.io.Closeable;
import java.util.List;
import org.molgenis.data.meta.model.Attribute;
import org.molgenis.data.support.AbstractWritable.AttributeWriteMode;

/** Creates a new Entity Writable */
public interface WritableFactory extends Closeable {
  Writable createWritable(String entityTypeId, List attributeNames);

  Writable createWritable(
      String entityTypeId, Iterable attributes, AttributeWriteMode attributeWriteMode);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy