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

org.molgenis.oneclickimporter.model.DataCollection Maven / Gradle / Ivy

Go to download

Plugin module for importing data with automatic metadata determination (not part of the importer framework).

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

import com.google.auto.value.AutoValue;
import java.util.List;
import org.molgenis.util.AutoGson;

@AutoValue
@AutoGson(autoValueClass = AutoValue_DataCollection.class)
@SuppressWarnings(
    "squid:S1610") // Abstract classes without fields should be converted to interfaces
public abstract class DataCollection {
  public abstract String getName();

  public abstract List getColumns();

  public static DataCollection create(String name, List columns) {
    return new AutoValue_DataCollection(name, columns);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy