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

org.molgenis.data.aggregation.AggregateQuery Maven / Gradle / Ivy

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

import javax.annotation.CheckForNull;
import javax.annotation.Nullable;
import org.molgenis.data.Entity;
import org.molgenis.data.Query;
import org.molgenis.data.meta.model.Attribute;

public interface AggregateQuery {
  @Nullable
  @CheckForNull
  Query getQuery();

  @Nullable
  @CheckForNull
  Attribute getAttributeX();

  @Nullable
  @CheckForNull
  Attribute getAttributeY();

  @Nullable
  @CheckForNull
  Attribute getAttributeDistinct();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy